在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>