@intellias/menu 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,12 +39,12 @@ Since now have our package published, Let's take a look at how we can use this p
|
|
|
39
39
|
|
|
40
40
|
To Install
|
|
41
41
|
```
|
|
42
|
-
npm install --save @
|
|
42
|
+
npm install --save @intellias/menu
|
|
43
43
|
```
|
|
44
44
|
Once you have installed the package, in your entry file of the repository (wrapper.ts) if you are using it in a Vue CLI project. Write the import command
|
|
45
45
|
|
|
46
46
|
```
|
|
47
|
-
import MainMenu, { MenuOptions, ProjectNameType } from '@
|
|
47
|
+
import MainMenu, { MenuOptions, ProjectNameType } from '@intellias/menu';
|
|
48
48
|
|
|
49
49
|
```
|
|
50
50
|
To install it globally.
|