在meteor中使用vue2.x
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

36 rader
569 B

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