home.vue 509 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <v-container>
  3. </v-container>
  4. </template>
  5. <script>
  6. export default {
  7. data: () => ({
  8. drawer: true,
  9. items: [
  10. { icon: 'mdi-filmstrip-box-multiple', text: '稿件列表', link: '/studio' },
  11. { icon: 'mdi-upload', text: '投稿', link: '/studio/upload' },
  12. { icon: 'mdi-database', text: '数据统计', link: '/studio/statistics' }
  13. ]
  14. }),
  15. mounted() {
  16. },
  17. created() {
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style scoped>
  24. a {
  25. text-decoration: none;
  26. }
  27. </style>