Vue Components for FitX Gym Touchpoints
npm install touchpoint-components-vue





---
npm run generate-component
e.g. npm run generate-component app-button
Manuel:
Create Component in lib-components with kebab-case.
E.g. app-button.vue
and export them with camel-case name
e.g.
``javascript`
export default {
name: 'AppButton',
...
}src/lib-components/index.js
the only missing Step is to add the new Component
in the Entry File like`javascript`
export { default as AppButton } from './app-button.vue';
.
- Or build Components Library via npm run build-sg.$3
- Lint Components via npm run lint.$3
- Cypress Unit Testing via npm run test:unit.Build
1. Update package.json, via npm version [update_type]
2. Build via npm run build.
3. Commit and Push Code
4. Publish via npm publish`.