router-link(tag="div", :to="{path: '/user/'+ userId}")
data() {
return {
userId: 0
}
},
mounted () {
this.getUserId(id)
},
methods: {
getUserId(uid) {
axios.get("http://127.0.0.1:3000/blabla/"+uid).then((response) => {
this.userId = response.data[0].id;
}).catch(error => {
console.log(error);
});
}
}
<template v-for="cell in cells">
<cell :color="cell.color" @click="changeAround(cell)"></cell>
</template>
changeAround(cell) {
// change cells color шт cells by using input cell
}
myFunc(e){
var element = e.target
},
при работе не которые данные куда сохранить лучший вариант? в куки или в localStorage?- куда хотите
при клике на кнопках меняется класс элемента но на всех кнопках
что нужно сделать чтобы менял класс только те которому мы нажали?
<template>
<div>
...
<template v-for="point in points" :key="point.id">
<point :point="point" @click="$emit('gotoOtherComponent')"></point>
</template>
</div>
</template>
<template>
<div id="app" class="go_section">
<start-screen @gotoOtherComponent="showOther=true" v-if="!showOther"></start-screen>
<other-screen v-if="showOther"></other-screen>
</div>
</template>