# eternal-form

> ## How to publish package? ``` 1.add vue dir/files in @src/components/

Latest version **0.1.10** (published 2020-09-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install eternal-form
pnpm add eternal-form
yarn add eternal-form
bun add eternal-form
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.10 |
| Published | 2020-09-14 |
| First published | 2020-08-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 528.6 KB |
| Known vulnerabilities | 0 (+26 in 2 direct dependencies) |
| Install scripts | no |
| Maintainers | 890time |

## Links

- npm: https://www.npmjs.com/package/eternal-form
- npm.io page: https://npm.io/package/eternal-form

## Dependencies (4)

- [vue](https://npm.io/package/vue.md) ^2.6.11
- [axios](https://npm.io/package/axios.md) ^0.19.2
- [core-js](https://npm.io/package/core-js.md) ^3.6.5
- [element-ui](https://npm.io/package/element-ui.md) ^2.13.1

## Recent versions

- 0.1.10 (latest) — 2020-09-14
- 0.1.9 — 2020-09-14
- 0.1.8 — 2020-09-13
- 0.1.7 — 2020-09-13
- 0.1.6 — 2020-09-03
- 0.1.5 — 2020-09-03
- 0.1.4 — 2020-09-03
- 0.1.3 — 2020-08-28
- 0.1.2 — 2020-08-25
- 0.1.1 — 2020-08-25
- 0.1.0 — 2020-08-25

## README

# eternal-form

## How to publish package?
```
1.add vue dir/files in @src/components/

   new-component/
   --NewComponent.vue
   --index.js
```
index.js:
`
import NewComponent from './NewComponent';
NewComponent.install = function (Vue) {
  Vue.component(NewComponent.name, NewComponent)
}
export default NewComponent;
`

```
2.add components in @src/index.js
   xxx
   -xxx.vue
   -index.js
```
`
import NewComponent from './components/new-component/index'
export default {
  //总体
  install,
  //支持按需引入
  ...
  NewComponent
}
`

```
3.npm publish
you may be change npm registry:
npm config set registry=http://registry.npmjs.org
and change back to taobao.org:
npm config set registry https://registry.npm.taobao.org 

```




### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).

---
_Source: https://npm.io/package/eternal-form · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
