使用vue框架的時候,若是頁面提示以下錯誤,則說明new Vue的時候沒有傳入 el 的值:vue
[Vue warn]: Cannot find element: #main
咱們傳入el 既能夠,如:框架
var main = new Vue({ el: '#main', data: { currentActivity: 'home' } }):