wip
This commit is contained in:
27
src/client/root.vue
Normal file
27
src/client/root.vue
Normal file
@@ -0,0 +1,27 @@
|
||||
<template>
|
||||
<component :is="deck ? DeckUI : DefaultUI"/>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import Vue from 'vue';
|
||||
import DefaultUI from './default.vue';
|
||||
import DeckUI from './deck.vue';
|
||||
|
||||
export default Vue.extend({
|
||||
components: {
|
||||
DefaultUI,
|
||||
DeckUI,
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
};
|
||||
},
|
||||
|
||||
methods: {
|
||||
dialog(opts) {
|
||||
//this.$store.openDialog();
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
Reference in New Issue
Block a user