Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 11 days ago
JSON representation

Very simple components package with vue-cli3 help to configure the vue-cli components packages on npm

Awesome Lists containing this project

README

        

# clean-vuecli3-package
[![npm](https://img.shields.io/npm/v/clean-vuecli3-package.svg)](https://www.npmjs.com/package/clean-vuecli3-package)
[![Build Status](https://travis-ci.org/edtoken/clean-vuecli3-package.svg?branch=master)](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;
}

```