All Questions
10 questions
2
votes
1
answer
2k
views
How to place image address in array and use that array index in source VUE JS?
I’m new into vue js and I’m facing a little issue. I’m sure that its a minor issue as I’m new into it can’t able to solve it by myself. Any suggestion or solution will be acknowledge.
Thing is I want ...
1
vote
1
answer
329
views
Closing a dialog from the parent component
I am using Vue.js and Vuetify and i am having trouble in closing a dialog box.
i have set a dialog = '' and altering the value on method using this.dialog = false.
<v-dialog v-model="...
4
votes
1
answer
5k
views
How to create my own component library based on Vuetify
I want create my component library based on Vuetify and publish on npm.
Vuetify has already vue-plugin standard installation and use vuetify-loader, I think was a more complex scenario than plain ...
3
votes
4
answers
6k
views
"[Vue warn]: Unknown custom element: ..." Error, when using vuetify UI components with the vue-cli-plugin-vuetify
My project setup is using vue-cli with vue-cli-plugin-vuetify.
When i want to use any of the List Components, the browser console throws errors on most of the vuetify elements, like:
[Vue warn]: ...
1
vote
2
answers
1k
views
How can I add vuetify dialog into existing application?
I created a vue dialog app/component using vue cli. It consist of a sample button to be clicked on to imitate how the dialog (What I need) will be loaded when a link on the existing application is ...
1
vote
1
answer
1k
views
How to Import Custom Font in Vuetify Using Vue CLI 3 Version
I'm trying to include custom font in Vueitfy project.
Followed many resources but none of them worked. Vueitfy is overwriting my styles even if used !important
In my App.vue
<style lang="stylus"&...
3
votes
0
answers
982
views
How to remove stylush from Vuetify plugin and add Vuetify SCSS in Vue Js project
I installed vuetify plugin in my vuejs project. i am using vue cli 3. i selected vuetify recommended option to install. but i am already using SCSS in my project. vuetify added stylush.
How can i ...
4
votes
1
answer
967
views
Adding Vuetify to project template from vue-cli 3: Adding script tags to App.vue breaks the app?
I'm a Vue noob and just need to understand something pretty basic. I'm used to vue-cli 3 where you have your "App.vue" and that's kind of your root component and of course you have your <script> ...
4
votes
1
answer
3k
views
Failed to Compile After Installing Vuetify with Vue CLI 3
I tried to create a new Vue app with Vuetify by using the command from Vuetify homepage.
Following is the command I used:
npm install @vue/cli -g
vue create my-app // all options are default ...
31
votes
2
answers
16k
views
What is a-la-carte components? Should i use it?
When starting a new project using vue-cli it asks a few questions to customize the setup. Generally the project name, description, whether to use eslint for linting, karma and mocha for testing etc. ...