Questions tagged [vuetify.js]

Vuetify.js is an open source framework for building user interfaces for Vue.js 2 and 3. Use this tag for questions specific to Vuetify components and API. (If possible, provide a CodePen or JsFiddle item reproducing your issue.)

8866 questions
3
votes
1 answer

Error in adding vuetify on a project

I have created a vue-cli project. And I tried to add vuetify but I couldn't do it I've run: npm install vuetify --save A error came out on terminal: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.1.2…
Junior Vilas Boas
  • 1,365
  • 3
  • 9
  • 11
3
votes
1 answer

How to remove null values from Vuetify Progress Bar Calculation

I've got a progress bar where the percent complete changes as you click through 12 checkboxes on the page. The problem is that the formula produces NaN until all of the boxes are checked (then it's 100). How can I ignore null values in my formula so…
Greg Fielding
  • 517
  • 3
  • 10
  • 26
3
votes
4 answers

My Vuetify Switch not change his value?

I have a vuetify switch that should receive value from the API True or False. The API returns True, but the Switch always shows False. {{props.item.habilitado}} The switch is inside an a vuetify data table…
Isaías Orozco Toledo
  • 1,919
  • 5
  • 19
  • 35
3
votes
3 answers

Vuetify Custom Scrollbar

I tried different custom scrollbars for Vuetify but failed . Here is one of them which I tried ( I tried it for v-navigation-drawer ) Vuejs Custom scroll bar https://github.serafin.io/vuebar/#installation Vuejs Custom scroll bar working…
Bujji
  • 1,717
  • 10
  • 41
  • 66
3
votes
1 answer

Vuetify CSS layout issue

I currently follow the vuetify SPA example, wo the v-parallax whic is not yet fully ready for vue-cli v3. The current structure display the v-toolbar at the top , with the v-navigation-drawerr, then the v-content displaying the different…
user762579
3
votes
1 answer

How to select multiple checkboxes with Vuetify?

We've built an app with Vue.js and Firebase where jobs is a node in our db. When we add an event, we want to include the jobs available for that event. On our "Add Event" layout, I've included checkboxes of all the jobs in the DB. We want to be able…
Greg Fielding
  • 517
  • 3
  • 10
  • 26
3
votes
1 answer

Vuejs function in mounted lifecycle hook

I would like my hideMe() function to be called during the mounted lifecycle hook in my Vuejs code. Currently it is not, and I don't understand why. My code is below: export default { data() { return { show: "initial" } }, …
ToddT
  • 3,084
  • 4
  • 39
  • 83
3
votes
2 answers

VueJS Bind prop only if data variable is true

How can I bind a property only when a variable is set to true?