user-video.vue 277 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <v-container>
  3. <p>
  4. 用户视频
  5. </p>
  6. </v-container>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. mounted() {
  15. },
  16. created() {
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style scoped>
  23. a {
  24. text-decoration: none;
  25. }
  26. </style>