Detail.vue 373 B

123456789101112131415161718192021222324
  1. <template>
  2. <ul>
  3. <li>消息编号:{{id}}</li>
  4. <li>消息标题:{{title}}</li>
  5. </ul>
  6. </template>
  7. <script>
  8. export default {
  9. name:'Detail',
  10. props:['id','title'],
  11. computed: {
  12. // id(){
  13. // return this.$route.query.id
  14. // },
  15. // title(){
  16. // return this.$route.query.title
  17. // },
  18. },
  19. mounted() {
  20. // console.log(this.$route)
  21. },
  22. }
  23. </script>