@astrojs/vue
Advanced tools
Comparing version 1.0.1 to 1.0.2
# @astrojs/vue | ||
## 1.0.2 | ||
### Patch Changes | ||
- [#4706](https://github.com/withastro/astro/pull/4706) [`b0ee81d0a`](https://github.com/withastro/astro/commit/b0ee81d0a70d8301530c321b670ab784c9bc00a2) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix Vue `script setup` with other renderers applied | ||
## 1.0.1 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "@astrojs/vue", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Use Vue components within Astro", | ||
@@ -35,3 +35,3 @@ "type": "module", | ||
"devDependencies": { | ||
"astro": "1.1.6", | ||
"astro": "1.2.2", | ||
"astro-scripts": "0.0.7", | ||
@@ -38,0 +38,0 @@ "vue": "^3.2.37" |
@@ -19,3 +19,3 @@ # @astrojs/vue 💚 | ||
# Using NPM | ||
npm run astro add vue | ||
npx astro add vue | ||
# Using Yarn | ||
@@ -27,3 +27,3 @@ yarn astro add vue | ||
If you run into any hiccups, [feel free to log an issue on our GitHub](https://github.com/withastro/astro/issues) and try the manual installation steps below. | ||
If you run into any issues, [feel free to report them to us on GitHub](https://github.com/withastro/astro/issues) and try the manual installation steps below. | ||
@@ -30,0 +30,0 @@ ### Install dependencies manually |
@@ -6,3 +6,3 @@ import { h, createSSRApp } from 'vue'; | ||
function check(Component) { | ||
return !!Component['ssrRender']; | ||
return !!Component['ssrRender'] || !!Component['__ssrInlineRender']; | ||
} | ||
@@ -9,0 +9,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
22473