123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div>
- <h2>News Index page123</h2>
- <ul>
- <!-- vue中简单方式实现路由 -->
- <li><nuxt-link to="/news">NEWS</nuxt-link></li>
- </ul>
- </div>
- </template>
- <script>
- export default {
- name: 'news',
- components: {
- },
- props: {
- },
- data() {
- return {
- };
- },
- computed: {},
- methods: {
- },
- created() {
- },
- mounted() {
- },
- beforeDestroy() {
- },
- };
- </script>
- <style>
- </style>
|