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

28 lines
425 B
Vue
Raw Normal View History

2019-02-22 19:23:42 +00:00
<template>
2019-05-27 10:10:50 +00:00
<v-content>
<v-container>
2019-05-27 13:50:23 +00:00
<HeaderIntern v-model="session" />
2019-05-27 12:34:07 +00:00
<DeckList :session="session" />
2019-05-27 10:10:50 +00:00
</v-container>
</v-content>
2019-02-22 19:23:42 +00:00
</template>
2019-02-23 01:40:15 +00:00
<script>
2019-05-27 13:50:23 +00:00
import HeaderIntern from '@/components/HeaderIntern.vue'
2019-05-14 15:59:36 +00:00
import DeckList from '@/components/DeckList.vue'
2019-05-08 19:34:50 +00:00
2019-02-23 01:40:15 +00:00
export default {
2019-05-09 12:20:03 +00:00
name: 'UserCP',
2019-05-07 16:09:45 +00:00
2019-05-08 19:34:50 +00:00
components: {
2019-05-27 13:50:23 +00:00
HeaderIntern,
2019-05-14 15:59:36 +00:00
DeckList
2019-05-08 19:34:50 +00:00
},
2019-05-27 13:50:23 +00:00
data: () => ({
session: ''
})
2019-02-23 01:40:15 +00:00
}
</script>