Skip to content

Commit a175eb2

Browse files
authored
Release: Vue2 LTS (#3195)
## Description
1 parent 0e05eb8 commit a175eb2

File tree

3 files changed

+32
-31
lines changed

3 files changed

+32
-31
lines changed

‎.changeset/loud-pans-relax.md‎

Lines changed: 0 additions & 28 deletions
This file was deleted.

‎packages/sdks/output/vue/CHANGELOG.md‎

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,39 @@
11
# Builder.io Vue 2 SDK (LONG-TERM-SUPPORT) Changelog (@builder.io/sdk-vue)
22

3+
## 0.9.0
4+
5+
### Minor Changes
6+
7+
- 0e05eb8: Fix: add `/nuxt` and `/css` module exports:
8+
9+
- you can `import '@builder.io/sdk-vue/css'` in your Vue app to include the SDK's stylesheet:
10+
11+
```vue
12+
<!-- App.vue -->
13+
<script lang="ts">
14+
import '@builder.io/sdk-vue/css';
15+
import { RenderContent, _processContentResult } from '@builder.io/sdk-vue/vue2';
16+
17+
//...
18+
</script>
19+
```
20+
21+
- Alternatively, can add the `'@builder.io/sdk-vue/nuxt'` module in your nuxt config, which will automatically add the SDK's stylesheet:
22+
23+
```js
24+
// nuxt.config.js
25+
{
26+
buildModules: [
27+
'@builder.io/sdk-vue/nuxt',
28+
],
29+
}
30+
```
31+
332
## 0.8.2
433

534
### Patch Changes
635

7-
- be35236: Fix: SSR Content flicker.
36+
- be35236: Fix: SSR Content flicker. ⚠️ WARNING: this removes support for SSR A/B testing.
837
- 8a1016d: Fix: remove redundant re-renders of Content block.
938

1039
## 0.8.1

‎packages/sdks/output/vue/package.json‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@builder.io/sdk-vue",
33
"description": "Builder.io SDK for Vue",
4-
"version": "0.8.2-vue2-lts-0",
4+
"version": "0.9.0-vue2-lts-0",
55
"main": "./vue2/lib/node/index.cjs",
66
"module": "./vue2/lib/node/index.js",
77
"type": "module",
@@ -140,4 +140,4 @@
140140
"@builder.io/sdk-vue-2"
141141
]
142142
}
143-
}
143+
}

0 commit comments

Comments
 (0)