1234567891011121314151617181920212223 |
- <template>
- <article-list />
- </template>
- <script>
- import articleList from './list/index.vue';
- export default{
- components:{
- articleList
- },
- data(){
- return{
- currentPage:'list'
- }
- },
- methods:{
-
- }
- }
- </script>
- <style>
- </style>
|