[Vue warn]: Cannot find element

前端 未结 6 840
梦如初夏
梦如初夏 2020-12-07 13:22

I\'m using Vuejs. This is my markup:


  
6条回答
  •  生来不讨喜
    2020-12-07 14:00

    The simple thing is to put the script below the document, just before your closing tag:

    
       

    app.js file:

    var main = new Vue({
        el: '#main',
        data: {
            currentActivity: 'home'
        }
    });
    

提交回复
热议问题