summaryrefslogtreecommitdiff
path: root/examples/with-markdown/src/components/VueCounter.vue
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-markdown/src/components/VueCounter.vue')
-rw-r--r--examples/with-markdown/src/components/VueCounter.vue36
1 files changed, 18 insertions, 18 deletions
diff --git a/examples/with-markdown/src/components/VueCounter.vue b/examples/with-markdown/src/components/VueCounter.vue
index 2703b8b9b..2f25066dc 100644
--- a/examples/with-markdown/src/components/VueCounter.vue
+++ b/examples/with-markdown/src/components/VueCounter.vue
@@ -1,27 +1,27 @@
<template>
- <div class="counter">
- <button @click="subtract()">-</button>
- <pre>{{ count }}</pre>
- <button @click="add()">+</button>
- </div>
- <div class="children">
- <slot />
- </div>
+ <div class="counter">
+ <button @click="subtract()">-</button>
+ <pre>{{ count }}</pre>
+ <button @click="add()">+</button>
+ </div>
+ <div class="children">
+ <slot />
+ </div>
</template>
<script>
import { ref } from 'vue';
export default {
- setup() {
- const count = ref(0);
- const add = () => (count.value = count.value + 1);
- const subtract = () => (count.value = count.value - 1);
+ setup() {
+ const count = ref(0);
+ const add = () => (count.value = count.value + 1);
+ const subtract = () => (count.value = count.value - 1);
- return {
- count,
- add,
- subtract,
- };
- },
+ return {
+ count,
+ add,
+ subtract,
+ };
+ },
};
</script>