aboutsummaryrefslogtreecommitdiff
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.vue27
1 files changed, 0 insertions, 27 deletions
diff --git a/examples/with-markdown/src/components/VueCounter.vue b/examples/with-markdown/src/components/VueCounter.vue
deleted file mode 100644
index 2f25066dc..000000000
--- a/examples/with-markdown/src/components/VueCounter.vue
+++ /dev/null
@@ -1,27 +0,0 @@
-<template>
- <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);
-
- return {
- count,
- add,
- subtract,
- };
- },
-};
-</script>