123456789101112131415161718192021222324 |
- <template>
- <ul>
- <li>消息编号:{{id}}</li>
- <li>消息标题:{{title}}</li>
- </ul>
- </template>
- <script>
- export default {
- name:'Detail',
- props:['id','title'],
- computed: {
- // id(){
- // return this.$route.query.id
- // },
- // title(){
- // return this.$route.query.title
- // },
- },
- mounted() {
- // console.log(this.$route)
- },
- }
- </script>
|