27 lines
425 B
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>
|