Blame view
src/pages/widgets/Post.vue
1.01 KB
8ab31dc8b
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
<template> <div id="social"> <v-container grid-list-xl fluid> <v-layout row wrap> <v-flex lg6> <message-list></message-list> </v-flex> <v-flex lg6> <notification-list></notification-list> </v-flex> <v-flex lg6> <plain-table></plain-table> </v-flex> <v-flex lg6> <plain-table-order></plain-table-order> </v-flex> </v-layout> </v-container> </div> </template> <script> import MessageList from '@/components/widgets/list/MessageList'; import NotificationList from '@/components/widgets/list/NotificationList'; import PlainTable from '@/components/widgets/list/PlainTable'; import PlainTableOrder from '@/components/widgets/list/PlainTableOrder'; export default { components: { MessageList, NotificationList, PlainTable, PlainTableOrder }, data () { return { }; }, methods: { handleClick: (e) => { console.log(e); } }, }; </script> |