All Questions
71 questions
0
votes
1
answer
470
views
Force Vuetify VTextField to update value?
I am creating a custom VTextField that only accepts numbers and also formats the number. It should update the VTextField value to the filtered and formatted value, but it won't do as expected.
I think ...
0
votes
1
answer
640
views
JS confirm method to toggle vuetify checkbox in vue 2
things are getting super hectic with this attempt. I just have a v-dialog, inside of it is a checkbox. When you click the checkbox, we runs a confirm() method to open browser focused dialog to confirm ...
0
votes
1
answer
1k
views
Can I change v-switch toggle and label based on my data?
This is the code with the v-switch:
<v-data-table
:headers="headers"
:items="desserts"
:items-per-page="5"
item-key="name"
...
0
votes
1
answer
28
views
Why does Array.push not work on arrays with Vuelidatevalidations?
I have multiple formArrays inside a form variable. On adding vuelidate validations to these formArrays/collections, Array.push doesn't work properly.
FormArray and Form Data
data() {
return {
...
0
votes
1
answer
32
views
Vuex with Nuxt - Unknown Action Type:
I am trying to move my local methods to a VueX Store. Im using nuxt.js so the store format is a bit different than usual. When I try to call my store action, i get "vuex unknown action type: ...
0
votes
1
answer
319
views
Document upload file containing a select option
I have a document upload file of multiple uploads which displays the filename and a select option where the user should select a document type for the file uploaded. The upload function works fine but ...
1
vote
2
answers
754
views
How to inherit outer UI components in vue/nuxt?
I'm new to vue, my project uses Vue2, Nuxt and Vuetify.
I would like to make a base .vue component, and several components derived from the base.
For example, this is my base dailog MyDialog.vue:
<...
0
votes
2
answers
2k
views
How to remove padding from v-select component in vuetify
how to remove padding from v-select
[This is my code]
<v-select
:items="cities"
class="select--menu"
label="Solo field"
solo
hide-details
hide-selected
...
0
votes
1
answer
496
views
Using v-radio inside v-tab
I'd like to use v-radio inside v-tab and select it when the tab choiced
But the problem is I don't know how to select single v-radio without v-radio-group because I have v-for and my v-tabs styles ...
1
vote
1
answer
919
views
How to add X(Close button) in v-autocomplete vuetify?
how can I add close button inside v-autocomplete list, so I could be able to close it using the button which is inside it.
1
vote
1
answer
2k
views
How to inject/append data in v-autocomplete whilst still being able to view old data on mount using vue/vuetify
I am trying to build an update dialog and I am currently stuck because I can't think of a solution of how to view old values in the fields and still be able to change old values to new values.
data: ()...
1
vote
1
answer
481
views
Show different message on Password validation in Vuetify?
I have passowrd rule like this
passwordRule(value){
const pattern = /^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#\$%\^&\*])(?=.{8,})/;
return (
pattern.test(value) ||
...
0
votes
2
answers
1k
views
How to change v-autocomplete defualt icon position?
I am trying to do something with v-autocomplete where the default position for v-autocomplete is on the right side of the field, where I want the field to have icon on the left side before the ...
1
vote
2
answers
3k
views
Nuxt, Vuetify skeleton loader while image loads
I cannot find one proper example of loading an image with a skeleton loader. I'm using nuxt + Vuetify and I'm trying to use a simple image with a skeleton loader.
Here is my code.
<template>
&...
1
vote
0
answers
441
views
Loop on vuetify v-data-table pagination
I'm doing a project with Nuxtjs and Vuetify. The problem is in v-data-table, I'm trying to paginated the result, but the problem is that when data table load, it make a infinite loop and infinites ...