在meteor中使用vue2.x
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

36 lignes
569 B

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