0
私はlaravel 5.3 + inbuild VueJs componetsを使用しています。laravel 5.3 + VueJsルートで外部コンポーネントをインポートする方法
ここではルートを使用したいので、以下のコードを使用していますが動作しません。 Page1
の代わりに
const NotFound = { template: '<p>Page not found</p>' }
const Page1 = { template: '<p>home page</p>' }
const Page2 = { template: '<p>about page</p>' }
const routes = {
'/': Page1,
'/page2': Page2
}
const app = new Vue({
el: '#app',
data: {
currentRoute: window.location.pathname
},
computed: {
ViewComponent() {
return routes[this.currentRoute] || NotFound
}
},
render (h) { return h(this.ViewComponent) }
});
どのようにインポートExample.vue
私はrequire('./components/Example.vue')
を試してみましたが、そのは助けてください動作していません。
'const Page1 = require( './ components/Example.vue')'を試したときのエラーは何ですか? – SimonDepelchin
gulpがこのコードで実行されていないため、エラーはありません – Drone
実行されていない場合はエラーをスローしますか? – SimonDepelchin