Top "Vue-component" questions

Component is a powerful Vue feature that allows extending basic HTML elements to encapsulate reusable code.

VueJS: @keydown, @keyup, and this.$refs works with input, but not with md-textarea

I have successfully completed a basic speed typing game using vue.js. For the "typing box", I used <input&…

javascript vue.js vuejs2 vue-component vue-material
Using custom theming in Vuetify and pass color variables to components

In my index.js file I have manually override the Vuetify theme object with my company's color: Vue.use(Vuetify, { …

vuejs2 vue-component vuetify.js
Async Computed in Components - VueJS?

I'm finding a solution to async computed method in Components: Currently, my component is: <div class="msg_content"> {{…

javascript vue.js vuejs2 vue-component
how to create a 404 component in vuejs using vue-router

I'm new to vuejs and I'm working on my first project with vue. I'm just wondering how I will route …

vue.js http-status-code-404 vue-component vue-router
How to change style of background color using Vue.js only

import Vue from 'vue' import App from './App' import BootstrapVue from 'bootstrap-vue' import 'bootstrap/dist/css/bootstrap.css' import …

css vue.js vuejs2 vue-component bootstrap-vue
Include global functions in Vue.js

In my Vue.js application I want to have some global functions. For example a callApi() function which I can …

javascript vue.js vue-resource vue-component
Is it possible to resize vuetify components?

I recently use Vuetify to implement some UI designs. However, I found the default input component (such as v-text-field, v-select) …

vue.js vue-component vuetify.js
Run component method on load vue.js

hey I'm pretty new to Vue.js and I'm trying to accomplish what seems to be a simple thing but …

javascript vue.js vue-component
How to pass props using slots from parent to child -vuejs

I have a parent component and a child component. The parent component's template uses a slot so that one or …

vue.js vuejs2 vue-component
Is there any way to 'watch' for localstorage in Vuejs?

I'm attempting to watch for localstorage: Template: <p>token - {{token}}</p> Script: computed: { token() { return …

javascript vue.js vuejs2 vue-component vue-resource