| 123456789101112131415161718192021222324252627282930 |
- <template>
- <v-container>
- </v-container>
- </template>
- <script>
- export default {
- data: () => ({
- drawer: true,
- items: [
- { icon: 'mdi-filmstrip-box-multiple', text: '稿件列表', link: '/studio' },
- { icon: 'mdi-upload', text: '投稿', link: '/studio/upload' },
- { icon: 'mdi-database', text: '数据统计', link: '/studio/statistics' }
- ]
- }),
- mounted() {
- },
- created() {
- },
- methods: {
- }
- }
- </script>
- <style scoped>
- a {
- text-decoration: none;
- }
- </style>
|