diff options
author | 2023-10-26 19:13:43 +0800 | |
---|---|---|
committer | 2023-10-26 19:13:43 +0800 | |
commit | ec7f53168273e040119341c8e3bbdf1571bccfa0 (patch) | |
tree | 1d00b81d6b9caadd5faf16bee28488f22dcb5002 /packages/integrations/vue | |
parent | c8976440ff396843af5d73ddddd97b230a1866f5 (diff) | |
download | astro-ec7f53168273e040119341c8e3bbdf1571bccfa0.tar.gz astro-ec7f53168273e040119341c8e3bbdf1571bccfa0.tar.zst astro-ec7f53168273e040119341c8e3bbdf1571bccfa0.zip |
Fix examples smoke test fail (#8923)
Diffstat (limited to 'packages/integrations/vue')
-rw-r--r-- | packages/integrations/vue/CHANGELOG.md | 2 | ||||
-rw-r--r-- | packages/integrations/vue/README.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md index d0853e320..f39b83863 100644 --- a/packages/integrations/vue/CHANGELOG.md +++ b/packages/integrations/vue/CHANGELOG.md @@ -209,7 +209,7 @@ }); ``` - ```js + ```ts // src/pages/_app.ts import type { App } from 'vue'; import i18nPlugin from '../plugins/i18n'; diff --git a/packages/integrations/vue/README.md b/packages/integrations/vue/README.md index 3440048ee..05543aad6 100644 --- a/packages/integrations/vue/README.md +++ b/packages/integrations/vue/README.md @@ -116,7 +116,7 @@ export default defineConfig({ }); ``` -```js +```ts // src/pages/_app.ts import type { App } from 'vue'; import i18nPlugin from 'my-vue-i18n-plugin'; |