Skip to content

Commit 2af4eb2

Browse files
committed
docs: update content
1 parent 2dbc3e8 commit 2af4eb2

File tree

1 file changed

+21
-9
lines changed

1 file changed

+21
-9
lines changed

packages/docs/getting-started/introduction.md

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,37 +10,49 @@ menu: Getting started
1010
### Npm
1111

1212
```bash
13-
npm install @coreui/vue@next
13+
npm install @coreui/vue @coreui/coreui
14+
```
15+
16+
If you use CoreUI PRO version.
17+
18+
```bash
19+
npm install @coreui/vue-pro @coreui/coreui-pro
1420
```
1521

1622
### Yarn
1723

1824
```bash
19-
yarn add @coreui/vue@next
25+
yarn add @coreui/vue @coreui/coreui
26+
```
27+
28+
If you use CoreUI PRO version.
29+
30+
```bash
31+
yarn add @coreui/vue-pro @coreui/coreui-pro
2032
```
2133

2234
## Using components
2335

2436
```ts
2537
import { CAlert } from '@coreui/vue';
38+
39+
// CoreUI PRO version
40+
import { CAlert } from '@coreui/vue-pro';
2641
```
2742

2843
## Stylesheets
2944

30-
Vue components are styled using `@coreui/coreui` CSS library, but you can use them also with bootstrap CSS library. That is possible because `@coreui/coreui` library is compatible with bootstrap, it just extends its functionalities. The only exception is custom CoreUI components, which don't exist in the Bootstrap ecosystem.
45+
Vue components are styled using the `@coreui/coreui` or `@coreui/coreui-pro` CSS library, but you can also use them with the bootstrap CSS library. That is possible because the `@coreui/coreui` library is compatible with Bootstrap, it just extends its functionalities. The only exceptions are custom CoreUI and CoreUI PRO components, which don't exist in the Bootstrap ecosystem.
3146

3247
### CoreUI CSS files
3348

34-
###### Installation
35-
36-
```bash
37-
npm install @coreui/coreui@next
38-
```
39-
4049
###### Basic usage
4150

4251
```js
4352
import '@coreui/coreui/dist/css/coreui.min.css'
53+
54+
// CoreUI PRO version
55+
import '@coreui/coreui-pro/dist/css/coreui.min.css'
4456
```
4557

4658
### Bootstrap CSS files

0 commit comments

Comments
 (0)