我在Laravel默认路径中有一个自定义的Vue组件:
因此,我安装了 Laravel-Nova ,并希望在部分视图中使用该组件
<dropdown-menu slot="menu" width="200" direction="rtl">
<my-component></my-component>
<ul class="list-reset">
<li>
...
我应该在哪里导入组件?换句话说,我应该在哪里放置
:import MyComponent from '/path/to/my/component/MyComponent.vue'
//and
Vue.component('my-component', MyComponent)
我想以某种方式可以在Nova JavaScript Helpers的Vue组件的代码中使用它,例如:
this.$toasted.show('It worked!', { type: 'success' })
//or
axios.get('/nova-vendor/stripe-inspector/endpoint').then(response => {
// ...
})
答案 0 :(得分:0)
这是类似组件的示例:
import MyLens from './components/views/Lens';
Nova.booting((Vue, router, store) => {
router.addRoutes([{
name: 'nova-improvements',
path: '/nova-improvements',
component: require('./components/Tool'),
}])
});
Nova.booting((Vue, router, store) => {
Vue.component('lens', MyLens)
});