mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat: add @vant/area-data package (#8490)
This commit is contained in:
parent
471fabb810
commit
3451fe747b
23
packages/vant-area-data/README.md
Normal file
23
packages/vant-area-data/README.md
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# Vant Area Data
|
||||||
|
|
||||||
|
省市区数据,适用于 Vant Area 组件。
|
||||||
|
|
||||||
|
## 安装
|
||||||
|
|
||||||
|
#### NPM
|
||||||
|
|
||||||
|
```shell
|
||||||
|
npm i @vant/area-data -D
|
||||||
|
```
|
||||||
|
|
||||||
|
#### YARN
|
||||||
|
|
||||||
|
```shell
|
||||||
|
yarn add @vant/area-data --dev
|
||||||
|
```
|
||||||
|
|
||||||
|
## 使用
|
||||||
|
|
||||||
|
```ts
|
||||||
|
import { areaList } from '@vant/area-data';
|
||||||
|
```
|
16
packages/vant-area-data/package.json
Normal file
16
packages/vant-area-data/package.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"name": "@vant/area-data",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "Vant 省市区数据",
|
||||||
|
"main": "lib/index.js",
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public",
|
||||||
|
"registry": "https://registry.npmjs.org/"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"build": "tsc",
|
||||||
|
"release": "yarn build && npm publish"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"repository": "https://github.com/youzan/vant"
|
||||||
|
}
|
3803
packages/vant-area-data/src/index.ts
Normal file
3803
packages/vant-area-data/src/index.ts
Normal file
File diff suppressed because it is too large
Load Diff
13
packages/vant-area-data/tsconfig.json
Normal file
13
packages/vant-area-data/tsconfig.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "ES2019",
|
||||||
|
"outDir": "./lib",
|
||||||
|
"module": "commonjs",
|
||||||
|
"strict": true,
|
||||||
|
"declaration": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"lib": ["esnext"]
|
||||||
|
},
|
||||||
|
"include": ["src/**/*"]
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user