123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <div>
- <h2>12321321321</h2>
- </div>
- </template>
- <script>
- export default {
- name: 'news',
- async asyncData({params,req,query}){
- console.log(params);
- console.log(req);
- console.log(query);
- },
- components: {
- },
- props: {
- },
- data() {
- return {
- };
- },
- computed: {},
- methods: {
- },
- created() {
- },
- mounted() {
- },
- beforeDestroy() {
- },
- };
- </script>
- <style>
- </style>
|