We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Goal:
Steps:
Create a new folder called dev-vue-cli in packages in which you create a new empty project with Vue CLI.
dev-vue-cli
packages
Make sure the package.json is set to "private": true like the packages/dev project. (this prevents lerna from trying to publish this to NPM)
"private": true
packages/dev
Copy 3 simple Vue components from the packages/atoms folder into this Vue CLI project inside a folder called "components"
packages/atoms
lerna add planetar --scope dev-vue-cli
Look at the packages/dev folder to see how Planetar is set up, and do the same for Vue CLI.
packages/dev/src/pages/component-gallery/PageComponentGallery.vue
import Planetar from 'planetar' Vue.use(Planetar)
The text was updated successfully, but these errors were encountered:
mesqueeb
No branches or pull requests
Goal:
Steps:
Create a new folder called
dev-vue-cli
inpackages
in which you create a new empty project with Vue CLI.Make sure the package.json is set to
"private": true
like thepackages/dev
project. (this prevents lerna from trying to publish this to NPM)Copy 3 simple Vue components from the
packages/atoms
folder into this Vue CLI project inside a folder called "components"lerna add planetar --scope dev-vue-cli
Look at the
packages/dev
folder to see how Planetar is set up, and do the same for Vue CLI.packages/dev/src/pages/component-gallery/PageComponentGallery.vue
The text was updated successfully, but these errors were encountered: