diff --git a/README.md b/README.md
index 316fbb8..0bbdc55 100644
--- a/README.md
+++ b/README.md
@@ -68,6 +68,7 @@ See [Vitesse](https://github.com/antfu/vitesse) for full featureset.
- [`vite-plugin-pages`](https://github.com/hannoeru/vite-plugin-pages) - file system based routing
- [`unplugin-auto-import`](https://github.com/antfu/unplugin-auto-import) - Directly use Vue Composition API and others without importing
- [`unplugin-vue-components`](https://github.com/antfu/unplugin-vue-components) - components auto import
+- [`unplugin-vue-macros`](https://github.com/sxzz/unplugin-vue-macros) - Explore and extend more macros and syntax sugar to Vue.
- [VueUse](https://github.com/antfu/vueuse) - collection of useful composition APIs
## Try it now!
diff --git a/components.d.ts b/components.d.ts
index 17ed50b..091bbfb 100644
--- a/components.d.ts
+++ b/components.d.ts
@@ -7,10 +7,10 @@ export {}
declare module '@vue/runtime-core' {
export interface GlobalComponents {
- Counter: typeof import('./src/components/Counter.vue')['default']
- Footer: typeof import('./src/components/Footer.vue')['default']
- Input: typeof import('./src/components/Input.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
+ TheCounter: typeof import('./src/components/TheCounter.vue')['default']
+ TheFooter: typeof import('./src/components/TheFooter.vue')['default']
+ TheInput: typeof import('./src/components/TheInput.vue')['default']
}
}
diff --git a/src/App.vue b/src/App.vue
index 001c20e..c1caf1f 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,6 +1,6 @@