25 lines
471 B
Vue
25 lines
471 B
Vue
<template>
|
|
<v-expansion-panel-content>
|
|
<template v-slot:header>
|
|
<span class="subheading">New Deck</span>
|
|
</template>
|
|
|
|
<v-container>
|
|
<v-card flat>
|
|
<!-- <DeckEditor :visible="true" value="" @close="" @change="" /> -->
|
|
</v-card>
|
|
</v-container>
|
|
</v-expansion-panel-content>
|
|
</template>
|
|
|
|
<script>
|
|
import DeckEditor from './forms/DeckEditor.vue'
|
|
|
|
export default {
|
|
name: 'NewDeck',
|
|
|
|
components: {
|
|
DeckEditor
|
|
}
|
|
}
|
|
</script>
|