diff options
Diffstat (limited to 'examples/with-nanostores/src/components/AdminsVue.vue')
-rw-r--r-- | examples/with-nanostores/src/components/AdminsVue.vue | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/examples/with-nanostores/src/components/AdminsVue.vue b/examples/with-nanostores/src/components/AdminsVue.vue deleted file mode 100644 index 5eb73dd3d..000000000 --- a/examples/with-nanostores/src/components/AdminsVue.vue +++ /dev/null @@ -1,33 +0,0 @@ -<template> - <div> - <h1>Vue</h1> - <ul> - <li v-for="admin in list" :key="admin.id"> - {{ JSON.stringify(admin, null, 2) }} - </li> - </ul> - <div> - <h3>Counter</h3> - <p>{{ count.value }}</p> - <button @click="decreaseCounter">-1</button> - <button @click="increaseCounter">+1</button> - </div> - <br /> - </div> -</template> - -<script> -import { useStore } from '@nanostores/vue'; - -import { admins } from '../store/admins.js'; -import { counter, increaseCounter, decreaseCounter } from '../store/counter.js'; - -export default { - setup() { - const list = useStore(admins); - const count = useStore(counter); - - return { list, count, increaseCounter, decreaseCounter }; - }, -}; -</script> |