0.1.2 • Published 10 months ago
sykj v0.1.2
- 🤓 SY_UI
- 💪 Vue 3 Composition API
- 🔥 Written in TypeScript
快速开始
安装
# NPM
$ npm install sykj --save
# Yarn
$ yarn add sykj
# pnpm
$ pnpm install sykj
使用
// main.ts
import { createApp } from "vue";
import sykj from "sykj";
import App from "./App.vue";
const app = createApp(App);
app.use(sykj);
app.mount("#app");
// App.vue
<template>
<div class="app">
<input type="text" />
<SyKeyboard />
</div>
</template>
// ***.vue
<template>
<div class="app">
<input type="text" />
<!-- 使用input or textarea 聚焦时自动打开键盘-->
</div>
</template>