0.0.1-beta.21 • Published 2 years ago

@yuke_2022/yk-ui v0.0.1-beta.21

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

myUI

项目初始化

npm install

项目启动

npm run dev

项目打包

npm run build

运行单元测试 Vitest

npm run test:unit

Run End-to-End Tests with Cypress

npm run test:e2e:dev

This runs the end-to-end tests against the Vite development server. It is much faster than the production build.

But it's still recommended to test the production build with test:e2e before deploying (e.g. in CI environments):

npm run build
npm run test:e2e

Lint with ESLint

npm run lint

引入

import MyUI from "packages";
const app = createApp(App).use(MyUI).mount("#app");

Button 按钮

<template>
  <YkButton>确认</YkButton>
</template>

Input 输入框

<script setup lang="ts">
import { ref } from "vue";

const text = ref("")
</script>
<template>
  <YkInput v-model="text" prefix="金额" suffix="元"></YkInput>
</template>
0.0.1-beta.21

2 years ago

0.0.1-beta.20

2 years ago

0.0.1-beta.19

2 years ago

0.0.1-beta.18

2 years ago

0.0.1-beta.17

2 years ago

0.0.1-beta.16

2 years ago

0.0.1-beta.15

2 years ago

0.0.1-beta.14

3 years ago

0.0.1-beta.13

3 years ago

0.0.1-beta.12

3 years ago

0.0.1-beta.11

3 years ago

0.0.1-beta.10

3 years ago

0.0.1-beta.9

3 years ago

0.0.1-beta.8

3 years ago

0.0.1-beta.7

3 years ago

0.0.1-beta.6

3 years ago

0.0.1-beta.5

3 years ago

0.0.1-beta.4

3 years ago

0.0.1-beta.3

3 years ago

0.0.1-beta.2

3 years ago

0.0.1-beta.1

3 years ago

0.0.1-beta.0

3 years ago

0.0.1

3 years ago

0.0.0

3 years ago