您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
28 行
362 B
28 行
362 B
4 年前
|
<template>
|
||
|
<div>
|
||
|
<button @click="increment">Click Me</button>
|
||
|
<p>You've pressed the button {{counter}} times.</p>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
counter: 0,
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
increment() {
|
||
|
this.counter += 1
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
p {
|
||
|
font-family: serif;
|
||
|
}
|
||
|
</style>
|