12 lines
206 B
TypeScript
12 lines
206 B
TypeScript
|
import { Component, Vue, Prop } from 'vue-property-decorator';
|
||
|
|
||
|
@Component
|
||
|
export default class ShowDataset extends Vue {
|
||
|
|
||
|
@Prop()
|
||
|
dataset;
|
||
|
|
||
|
get results() {
|
||
|
return this.dataset;
|
||
|
};
|
||
|
}
|