<script> import config from '../config.js'; import Edit from './edit.vue' export default{ created() { const mkid=this.$route.meta.mkid this.config=config[mkid].index.config }, components:{ Edit }, render(h) { return h('BasePage', { class: 'min_full', props: { config: this.config }, scopedSlots: { dialog: ctx => h('template'), toolbar: ctx => h('template') } }) }, } </script>