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/views/UserCP.vue

27 lines
425 B
Vue

<template>
<v-content>
<v-container>
<HeaderIntern v-model="session" />
<DeckList :session="session" />
</v-container>
</v-content>
</template>
<script>
import HeaderIntern from '@/components/HeaderIntern.vue'
import DeckList from '@/components/DeckList.vue'
export default {
name: 'UserCP',
components: {
HeaderIntern,
DeckList
},
data: () => ({
session: ''
})
}
</script>