- composer updates

- publisher_name dafault auf 'Geologische Bundesanstalt (GBA)'
- componet facet-list auf facet-category unbenannt
- change database.php um eventuell schema aus dem .env-file zu entnehmen, fall angegeben
- LicencesTableSeeder.php amgepasst
This commit is contained in:
Arno Kaimbacher 2020-03-04 19:00:03 +01:00
parent bfd914a36d
commit 728687304c
12 changed files with 116 additions and 153 deletions

View file

@ -0,0 +1,12 @@
import { Component, Vue, Prop } from 'vue-property-decorator';
@Component
export default class ShowDataset extends Vue {
@Prop()
dataset;
get results() {
return this.dataset;
};
}