在meteor中使用vue2.x
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

36 строки
569 B

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