How make json data available for my Vue dynamic routes

前端 未结 2 1408
夕颜
夕颜 2021-01-28 05:19

I have a List component where I fetch my date from db/blogs.json:

created() {
    fetch(\'http://localhost:3000/blogs\')
    .then(respo         


        
2条回答
  •  一向
    一向 (楼主)
    2021-01-28 05:46

    You can send props to the child component in the tag name, in your case:

      //LIST component(PARENT)
      
         //CHILD component
      
    

提交回复
热议问题