使用vue webpack開發了一個專案
在瀏覽器控制台存取Vue時直接拋出Vue is not defined
// main.js new Vue({ router, store, render: h => h(App) }).$mount('#app-box')
請問如何在外部存取vue實例?
在 created 裡設定一個 window.xxx = this;
var app = new Vue()
這樣不就行了?
window.app = new vue({});這樣 你可以在控制台上列印app
在 created 裡設定一個 window.xxx = this;
這樣不就行了?
window.app = new vue({});
這樣 你可以在控制台上列印app