<HeaderComponent :text="hello"></HeaderComponent>import { HeaderComponent } from 'portfolio'
export default {
components: {
HeaderComponent
}
}npm install portfolio
<HeaderComponent :text="hello"></HeaderComponent>import { HeaderComponent } from 'portfolio'
export default {
components: {
HeaderComponent
}
}npm install portfolio
npm install
npm run serve
npm run build
npm run lint
npm run doc:build
npm run styleguide
npm run styleguide:build
this is now on git pages
to deploy.. below are commands needed to publish on git pages -this will build the dist folder and push the dist folder up to gh Build Your Project:
git checkout deploy git merge main npm run build
git add dist -f git commit -m "Add dist folder"
git subtree push --prefix dist origin deploy