https://github.com/edtoken/clean-vuecli3-package
Very simple components package with vue-cli3 help to configure the vue-cli components packages on npm
https://github.com/edtoken/clean-vuecli3-package
Last synced: 2 months ago
JSON representation
Very simple components package with vue-cli3 help to configure the vue-cli components packages on npm
- Host: GitHub
- URL: https://github.com/edtoken/clean-vuecli3-package
- Owner: edtoken
- Created: 2019-05-23T12:44:37.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T02:37:15.000Z (over 3 years ago)
- Last Synced: 2025-01-02T17:33:05.212Z (over 1 year ago)
- Language: Vue
- Homepage:
- Size: 4.44 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# clean-vuecli3-package
[](https://www.npmjs.com/package/clean-vuecli3-package)
[](https://travis-ci.org/edtoken/clean-vuecli3-package)
```
Very simple components package with vue-cli3
help to configure the vue-cli components packages on npm
```
```
// App.vue
Child component A
Child component B
import {ComponentA, ComponentB} from 'clean-vuecli3-package';
export default {
name: 'app',
components: {
ComponentA,
ComponentB,
},
};
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
```