在meteor中使用vue2.x
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

36 wiersze
569 B

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