diff options
author | 2022-10-18 11:26:00 -0700 | |
---|---|---|
committer | 2022-10-18 14:26:00 -0400 | |
commit | 4c1ffef3e4753ffccd71e9b1524aa4faa1de652f (patch) | |
tree | 20c56246738a6d7d7dbfacbf836f7efe332c8556 /.changeset/dry-moose-join.md | |
parent | 8cf692766bf482717cfed416f5317ae1b5fb6cf0 (diff) | |
download | astro-@astrojs/vercel@2.3.0.tar.gz astro-@astrojs/vercel@2.3.0.tar.zst astro-@astrojs/vercel@2.3.0.zip |
[ci] release (#5078)astro@1.5.1@astrojs/vue@1.2.0@astrojs/vercel@2.3.0@astrojs/tailwind@2.1.1@astrojs/solid-js@1.2.1@astrojs/react@1.2.1@astrojs/node@2.0.1
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to '.changeset/dry-moose-join.md')
-rw-r--r-- | .changeset/dry-moose-join.md | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/.changeset/dry-moose-join.md b/.changeset/dry-moose-join.md deleted file mode 100644 index b90fac4ee..000000000 --- a/.changeset/dry-moose-join.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -'@astrojs/vue': minor ---- - -Add support for the `appEntrypoint` option, which accepts a root-relative path to an app entrypoint. The default export of this file should be a function that accepts a Vue `App` instance prior to rendering. This opens up the ability to extend the `App` instance with [custom Vue plugins](https://vuejs.org/guide/reusability/plugins.html). - -```js -// astro.config.mjs -import { defineConfig } from 'astro/config'; -import vue from '@astrojs/vue'; - -export default defineConfig({ - integrations: [ - vue({ - appEntrypoint: '/src/pages/_app' - }) - ] -}) -``` - -```js -// src/pages/_app.ts -import type { App } from 'vue'; -import i18nPlugin from '../plugins/i18n' - -export default function setup(app: App) { - app.use(i18nPlugin, { /* options */ }) -} -``` |