All Questions
15 questions
0
votes
0
answers
232
views
Laravel mix in production requires users to refresh to pull latest build
We are using laravel mix (laravel 9) with vuetify 2 (vue 2) in a production environment hosted in ECS.
Our builds etc and deploy just fine, but our user base need to either refresh their browser, or ...
0
votes
2
answers
55
views
How to set input value from method?
I create check-in system (Laravel + Vuetify), so i would like to ask: how to get userID from an object (API) en put them into input?
<template>
<v-text-field
v-model="...
1
vote
1
answer
558
views
Parsing Markdown using Marked in Laravel 8 and VueJS 2
I wonder if you are able to help me at all.
I'm attempting to build a forum using Laravel 8 and VueJS, however I've hit a brick wall where the Marked plugin doesn't seem to be working.
It does not ...
-1
votes
1
answer
721
views
Error in v-on handler: "TypeError: Cannot read property 'files' of undefined"
I'm trying to upload a photo with Vuetify, Laravel and Axios
I want to click on the upload button so Axios's post method sends the selected file to the server
v-file input:
<v-file-input :rules=&...
0
votes
1
answer
304
views
How do I imbed Vue/Vuetify components within other Vue/Vuetify components within Laravel?
I set myself a goal early this year of learning Laravel, Vue and Vuetify, none of which I have previously used. This has proven quite difficult since most tutorials and videos for Laravel don't touch ...
1
vote
1
answer
2k
views
nuxt.js and vue.js how to use vuetify "Select " dropdown list
i am using nuxt.js in my form i have vuetify "Select" Dropdown list but it not showing drop down item how to fix this error.
<v-col class="d-flex" cols="12" sm="6&...
0
votes
1
answer
756
views
How to use font icons in offline?
I'm currently using vuetify in my laravel app and it's working fine.
The vuetify is using material-design-icons based on this link, below codes they use these two links:
<link href="https://...
1
vote
1
answer
925
views
Define Router Link in Vuetify v-list in Google Contact Template
I am new to Vuetify and I am having no idea on how to use router link in v-list in the Google Contact Template provided by vuetiy. The list is binded with the data attribute inside script tag. How can ...
0
votes
1
answer
525
views
Overwrite template slot dynamically
Fetching some headers config from a belongsTo() relation from Laravel. The responses looks like this:
My Vuetify data table config is this one:
<v-data-table
:headers="newHeaders"
...
0
votes
1
answer
1k
views
Vuetify not being applied in Laravel
I have Vuetify installed in my Laravel project but none of the v- classes are working. There are no errors in the console though. Here is the app.js file:
require('./bootstrap');
window.Vue = ...
2
votes
2
answers
7k
views
Vuetify Treeview - Error Loading Children Asynchronously
I am using a client created with Vue Cli which fetches the data in the API made with Laravel 5.
I tried to load child items on a Treeview Vuetify, but it is not working as expected.
Vuetify Treeview ...
1
vote
1
answer
1k
views
Vue JS computed property not recalculating
I have a Laravel / Vue JS application that integrates a google map component as well as a Vuetify data-table component. The Vue instance also has a computed property that calculates the points for the ...
0
votes
1
answer
53
views
Component registration with .default is not working
I have 2 projects (A and B) and some packages which should be used in both projects. In A the component registration works with .default, in the other however not. What exactly do I have to update to ...
1
vote
1
answer
2k
views
Laravel Mix Unexpected Token Using import()
Im trying to run vuetify material dashboard on my vue and laravel project,after modifying the vuetify package.json for laravel mix and npm ( default was for vue-cli) , running npm run dev or npm run ...
5
votes
1
answer
10k
views
How to paginate with Vuetify and Laravel?
Goodnight
I'm trying to do server side paging with Vuetify and Laravel.
But the methods provided by Vuetify have not worked for me to do it correctly. I have a completed page that I want to ...