How make json data available for my Vue dynamic routes

前端 未结 2 1415
夕颜
夕颜 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:50

    Here is the working sandbox.

    Firstly you need to import JSON data from your JSON file correctly. As:

    
    

    Have to send props in the router-link as :

    More information
    
    

提交回复
热议问题