摘要: route.js // 该文件专门用于创建整个应用的路由器 import VueRouter from 'vue-router' //引入组件 import About from '../pages/About' import Home from '../pages/Home' import New 阅读全文
posted @ 2021-09-22 19:52 幻影之舞 阅读(221) 评论(0) 推荐(0)
摘要: message组件: <div> <ul> <li v-for="m in messageList" :key="m.id"> <router-link :to="{ name:'xiangqing', params:{ id:m.id, title:m.title } }"> {{m.title} 阅读全文
posted @ 2021-09-22 19:27 幻影之舞 阅读(255) 评论(0) 推荐(0)