This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
node-fftcg/frontend/src/components/NewDeck.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>