14
questions
0
votes
0
answers
17
views
Vue Vite Vuestic Validate Rules on Nested Child Component
Here I have structure like this
DivisiSalesForm.vue call Step1DivisiSales.vue call CompanySelect.vue
The submit button is on DivisiSalesForm.vue and I want to validate all the input on ...
0
votes
1
answer
30
views
How to find the vuestic admin's sidebar icons?
i expect who can teach i use this icon,or teach me how to find the icons, i really can't do that
And i control+shift+f search and see this ,don't find where are the icons from
enter image description ...
1
vote
1
answer
94
views
How does change the default width in vuestic inputs components
In my form, I used Vuestic inputs components text boxes, select and text areas but there width can not customize according to the my utilization
I used their classes and changed the width, and there ...
0
votes
1
answer
418
views
How to freeze columns in Vuestic UI data table (vue3)
I am using Vuestic UI with Vue3. I am using the data table component. I would like to accomplish this effect (reference from a different component) of freezing the first two columns of the table.
Is ...
1
vote
1
answer
274
views
Vuestic va-data-table custom cell template with complex value
According to slots docs I can customize the cell of a column like below
<template>
<va-data-table :items="items" :columns="columns">
<template #cell(street)=&...
3
votes
0
answers
438
views
Access current row data in Vuestic UI Data Table from template
due to lack of migration to Vue3 from Vuetify, I turned to Vuestic UI, which seems to do the job as intented, without to much of a pain to switch.
I have to display data, in a Data Table component, ...
1
vote
1
answer
837
views
Vue3 + Vite + Vuestic: Running in Dev Server but Blank White Page in Production after Making Build
I created a pdf generator application using vue3, vite and vuestic UI.
Other than these many pdf related npm packages are used.
All can be seen below package.json file.
package.json
{
"name&...
0
votes
2
answers
407
views
How to Vuestic DataTable displays values from properties of objects?
I'm using Vuestic in my vue project and I need to display values from a property that is in a object, I have something like this:
myObject: {
subObject: {
name
}
}
I have a list of myObject ...
1
vote
1
answer
671
views
How to change font style on vuestic <va-select> (or vuetify <v-select>)?
I am using Vuestic Admin as a template (based on Vuetify) and my (similar to ) component is strangely displaying different fonts for the selected option (inside the input field) and the dropdown ...
0
votes
1
answer
262
views
Vuestic VueJs hide element on small devices
I want to hide element if screensize is sm or xs using vuestic vuejs framework.
<div class="flex md4 sm4 xs0"></div>
<div class="flex v-line xs0 sm0 md1"></...
0
votes
1
answer
186
views
Vuestic-ui VaCheckbox Component is missing template or render function
I am using it with Laravel 8 and VUEJS 3.
Everything works fine except " VaCheckbox " gives this message.
" Component is missing template or render function "
Any idea?
Thanks
2
votes
1
answer
3k
views
Changing primary color in Naive-UI and typescript
I am new to using Naive and I want to override the theme of my app to have the primary color be orange. I was using vuestic to change it originally, so I am unsure on what I am doing wrong to change ...
0
votes
1
answer
797
views
Vue data table expandable row issue
Problem: I cannot add an expandable row in my data table. It is not showing.
Goal: I need to populate some data in my data table with an expandable row.
What I have tried: I have followed the ...
1
vote
1
answer
306
views
Vuestic and Typescript Integration
I'm new to Vue and Vuestic, and I would like to know if it's possible to integrate Typescript into a Vuestic project. If possible, how can I accomplish it?
Created a new project with Vuestic CLI and ...