index.vue 254 B

1234567891011121314151617181920212223
  1. <template>
  2. <article-list />
  3. </template>
  4. <script>
  5. import articleList from './list/index.vue';
  6. export default{
  7. components:{
  8. articleList
  9. },
  10. data(){
  11. return{
  12. currentPage:'list'
  13. }
  14. },
  15. methods:{
  16. }
  17. }
  18. </script>
  19. <style>
  20. </style>