mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
feat: add @vant/use
This commit is contained in:
parent
14c1d4ea77
commit
dbc6b92868
23
packages/vant-use/package.json
Normal file
23
packages/vant-use/package.json
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "@vant/use",
|
||||
"version": "0.0.1-beta.0",
|
||||
"description": "Vant composition api",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
"typings": "lib/index.d.ts",
|
||||
"sideEffects": false,
|
||||
"scripts": {
|
||||
"dev": "tsc -m esNext --outDir es --watch",
|
||||
"build": "tsc && tsc -m esNext --outDir es"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"license": "MIT",
|
||||
"repository": "https://github.com/youzan/vant/tree/dev/packages/vant-use",
|
||||
"devDependencies": {
|
||||
"release-it": "^14.0.2",
|
||||
"typescript": "^4.0.2",
|
||||
"vue": "^3.0.0-rc.10"
|
||||
}
|
||||
}
|
1
packages/vant-use/src/index.ts
Normal file
1
packages/vant-use/src/index.ts
Normal file
@ -0,0 +1 @@
|
||||
export { useToggle } from './useToggle';
|
10
packages/vant-use/src/useToggle/index.ts
Normal file
10
packages/vant-use/src/useToggle/index.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import { ref } from 'vue';
|
||||
|
||||
export function useToggle(defaultValue = false) {
|
||||
const state = ref(defaultValue);
|
||||
const toggle = (value = !state.value) => {
|
||||
state.value = value;
|
||||
};
|
||||
|
||||
return [state, toggle];
|
||||
}
|
14
packages/vant-use/tsconfig.json
Normal file
14
packages/vant-use/tsconfig.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES5",
|
||||
"outDir": "./lib",
|
||||
"module": "CommonJS",
|
||||
"strict": true,
|
||||
"declaration": true,
|
||||
"skipLibCheck": true,
|
||||
"esModuleInterop": true,
|
||||
"moduleResolution": "Node",
|
||||
"lib": ["esnext"]
|
||||
},
|
||||
"include": ["src/**/*"]
|
||||
}
|
1864
packages/vant-use/yarn.lock
Normal file
1864
packages/vant-use/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user