Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
just like this:
Vue.component('button-counter', {
data: function () {
return {
count: 0
}
},
template: '<button v-on:click="count++">Счётчик кликов — {{ count }}</button>'
})
Oh gods. Why use Vue on a landing page if you don't know how to use it?
Well, let's say I answer you how, then it will become easier or we will see the next question, but how in Vue?
import Vue from 'vue'
import Calc from './Calc.vue'
new Vue({
render: h => h(Calc)
}).$mount('#calc')
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question