All Questions
5 questions
0
votes
0
answers
123
views
Can't see any change after updateing Vue component inside Laravel Nova project
I am having issue I wasn't able to fix with googleing or stackoverflowing and its super strange one. It could easily be lack of knowledge on my side so have mercy.
I have made an application recently ...
3
votes
1
answer
718
views
Laravel Nova override vue component resulting [Vue warn]: Error compiling template
I'd like to implement a user guide using this
https://github.com/shipshapecode/vue-shepherd
on my nova.
I changed a file webpack.mix.js.dist to webpack.mix.js (inside nova directory).
Then I did :
npm ...
1
vote
1
answer
3k
views
Custom Vue Component in Laravel Nova
I have a custom Vue-Component located in Laravel default path for it:
resources/js/components/MyComponent.vue
So, I installed Laravel-Nova and want to use the component inside a view partial
resources/...
9
votes
1
answer
1k
views
How do I use Nova components in a custom tool or card?
I'm currently working on a Laravel Nova application in which I need to add a lot of custom tools and cards. I'd like to keep consistency across the whole application, so it makes sense to simply use ...
6
votes
0
answers
1k
views
Laravel Nova Vue component not being rendered
I have a laravel nova package where I define a custom vue component like this:
Nova.booting((Vue, router, store) => {
Vue.component('my-component', require('./components/MyComponent').default);
}...