Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
28 linhas
362 B
28 linhas
362 B
há 4 anos
|
<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>
|