All Questions
Tagged with laravel-nova vuejs2
10 questions
2
votes
0
answers
217
views
Migrating Custom Components from Vue2 to Vue3 in Laravel Nova: Issues with $watch Property Replacement
I'm currently upgrading a Laravel Nova project from Nova 3 (which uses Vue2) to Nova 4 (which uses Vue3). And for that reason, we had to do some modification in our custom components.
Like, in Vue3 we ...
1
vote
1
answer
342
views
Adding Vuex-ORM to Laravel Nova tool
Can someone help me out with adding vuex-orm to a Laravel Nova Tool.
The base of a Laravel Nova tool has tool.js with the following content ('planning-tool' in name, and path may vary according to the ...
8
votes
2
answers
4k
views
How to use a Laravel Nova Component in a Custom Nova Tool
I'd like to use the same loader as Laravel Nova uses when it's components are loading. I can't get it to compile. It never recognizes where to load the LoadingCard component from. Any help would be ...
21
votes
3
answers
6k
views
How do you use confirm dialogues in a custom Laravel Nova tool?
Is it possible to use the built in Laravel Nova confirm dialogue in your own tool? All I would like to use is interact with it how Nova does itself.
The docs are quite light on the JS topic, as the ...
3
votes
2
answers
4k
views
Enable VueJS DevTools for Laravel Nova
I want to inspect the underlying behavior of Laravel Nova(or custom field) and i am trying to enable the devtools. On the top right corner I can see the green icon of VueJS but when i go to the ...
1
vote
0
answers
428
views
Integrate pagination component or bootstrap with Laravel Nova
I need to add a pagination to a Nova-tool I write.
The natural solution was trying to add the vuejs-paginate component, but from some reason also no error appears in console, the pagination component ...
5
votes
1
answer
1k
views
Using multiple pages (components) dynamically in Vue js
I am using Laravel Nova custom tool which uses vue js for custom functionalities.
There is a tool.vue file inside of the component after creation, that everything handles there. The thing is I would ...
2
votes
1
answer
8k
views
Uncaught TypeError: Cannot read property 'apply' of undefined when trying to call onchange() method in Vuejs
I am using Laravel Nova custom tool to create my own template. Nova uses vuejs so I'm trying to add my custom form and js logic inside Tool.vue.
I run this very simple code to perform onChange() ...
0
votes
1
answer
2k
views
Laravel nova tool - add datepicker
I create a nova tool and need to have a datepicker.
In order to see the Nova datepicker, I did the following:
I added to User migration file:
$table->date('birthday')->nullable();
And ...
3
votes
1
answer
4k
views
Laravel Nova - Reload index view of a resource
I'm developing my first Nova field. It's an index field that contains a button which sends an Axios request, and when a response is being returned I need to reload the index view.
For now I got this:
...