Top "Vue-component" questions

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

how can component delete itself in Vue 2.0

as title, how can I do that from offical documentation just tell us that $delete can use argument 'object' and …

vue.js vue-component
How to get current route name in Nuxt.js?

I'm using Nuxt.js for building a static website. How to access in component's script code currently displayed route name (…

vue.js vuejs2 vue-component vue-router nuxt.js
Vue.js pass function as prop and make child call it with data

I have a posts list component and a post component. I pass a method to call from the posts list …

javascript vue.js vue-component
VueJs child component props not updating instantly

I have a parent/child component setup where the parent is loading data from the server and passing it down …

asynchronous vue.js vue-component
VueJS component not rendering

I have a very basic vueJS app which I'm following from the website. Here's the code, why is the component …

javascript vue.js rendering vue-component
Accessing nested child components in VueJS

Using v2.2.2. I have the following structure in my VueJS app. How can I access all of the Account components …

vue.js vuejs2 vue-component
Vue $route is not defined

I'm learning Vue router. And I want to made programmatic navigation without using <router-link> in templates file. My …

javascript vue.js vuejs2 vue-component vue-router
How to solve Interpolation inside attributes has been removed. Use v-bind or the colon shorthand ? Vue.JS 2

My vue component is like this : <template> <div> <div class="panel-group" v-for="item in list"&…

vue.js vuejs2 vue-component
Communication between sibling components in VueJs 2.0

Overview In Vue.js 2.x, model.sync will be deprecated. So, what is a proper way to communicate between sibling …

javascript vue.js vuejs2 vue-component vuex
In vue.js component, how to use props in css?

I'm new to vue.js. Here is my problem: In a *.vue file like this: <template> <div …

css vue.js vuejs2 vue-component