Skip to content

Commit 838a713

Browse files
authoredJan 7, 2025··
fix(vue)!: drop Vue 2 support (#439)
* fix!: drop Vue 2 support * chore: missed * chore: useless test * chore: sync lock * chore: conflicts * doc: update for Vue 2
1 parent eb6ff33 commit 838a713

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+87
-9097
lines changed
 

‎docs/content/1.setup/4.vue/0.installation.md

+24-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ navigation:
55
title: 'Installation'
66
---
77

8+
## Introduction
9+
10+
Unhead is the official head management library for Vue. It provides a simple and intuitive API for managing the head of your application, including the title, meta tags, and other elements that are important for SEO and user experience.
11+
812
## Setup
913

1014
1. Install `@unhead/vue` dependency to your project:
@@ -25,14 +29,31 @@ pnpm add @unhead/vue
2529

2630
::
2731

32+
If you're using Vue 2, you will need to install v1 of `@unhead/vue` instead.
33+
34+
::code-group
35+
36+
```bash [yarn]
37+
yarn add @unhead/vue@^1
38+
```
39+
40+
```bash [npm]
41+
npm install @unhead/vue@^1
42+
```
43+
44+
```bash [pnpm]
45+
pnpm add @unhead/vue@^1
46+
```
47+
48+
::
49+
50+
2851
### Demos
2952

3053
- [StackBlitz - Vite - Vue SPA](https://stackblitz.com/edit/vitejs-vite-uijgqa?file=package.json)
3154

3255
2. Register the Vue plugin:
3356

34-
::code-group
35-
3657
```ts [Vue 3]
3758
import { createHead } from '@unhead/vue'
3859
import { createApp } from 'vue'
@@ -46,6 +67,7 @@ app.mount('#app')
4667
```
4768

4869
```ts [Vue 2]
70+
// You must use v1 of Unhead for Vue 2 support
4971
import { createHead } from '@unhead/vue'
5072
import { UnheadPlugin } from '@unhead/vue/vue2'
5173
import Vue from 'vue'

‎examples/vue-2/.gitignore

-23
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.