在meteor中使用vue2.x
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

36 lines
569 B

před 4 roky
<template>
<div>
<button @click="increment">Click Me</button>
před 4 roky
<button @click="routeHandler">router page</button>
<button @click="goback">go back</button>
před 4 roky
<p>You've pressed the button {{counter}} times.</p>
</div>
</template>
<script>
export default {
data() {
return {
counter: 0,
}
},
methods: {
increment() {
this.counter += 1
před 4 roky
},
routeHandler(){
this.$router.push("/page")
},
goback(){
this.$router.go(-1)
před 4 roky
}
},
}
</script>
<style scoped>
p {
font-family: serif;
}
</style>