Skip to content
Advertisement

Tag: vuetify.js

How to render ordered list base on the specific properly of an object?

I have simple table in vuetify It rendered based on this objects [ { “id”: 275, “group_id”: 119, “url”: “https://cnn.com”, “url_num”: 10, “max_iteration”: 0 }, { “id”: 274, “group_id”: 119, “url”: “https://cnn.com”, “url_num”: 9, “max_iteration”: 0 }, { “id”: 273, “group_id”: 119, “url”: “https://cnn.com”, “url_num”: 8, “max_iteration”: 0 }, { “id”: 272, “group_id”: 119, “url”: “https://cnn.com”, “url_num”: 7, “max_iteration”: 0

How make dynamic breadcrumbs in vue.js?

I would like to have a dynamic breadcrumbs based on where I clicked on a category but I get an error that says my variable is undefined: TypeError: Cannot read properties of undefined (reading ‘homeMenu’). Yet in my getHomeCategory function, the console.log of homeCategory displays Perma’Thèque. I don’t understand how to do it, thanks Here is the code : Answer

How to sort Vuetify date range picker?

I have a vuetify date range picker as shown: Then use the following computed property to return the values to the text field however I cannot get the dates to be in order. You can only choose two dates and if you choose the newer date first it fills in the text field with that value first even if I

vue dialog doesn’t close/hide

I can’t close or hide my vue-dialog and I don’t know why. This is my js file from which I call the dialog: and this is my Dialog: If I choose an item in the dialog the callback-method “onStockSelected” of the js file runs and self.showItemChooser is set to false but the dialog is still visible. Answer You don’t have

Vuetify table not showing data

I am new to the vuetify and having a headache with displaying table. I searched others and tried them on mine but its not showing… shows data on dev tool I can see my data with dev tool but it wont show on the table ;~; Here are my codes Vuetify Table Code BoardList.vue script part api/board.js I tried props.item.articleno,

Advertisement