0.0.3 • Published 11 months ago

@tikkhun/vue-ui v0.0.3

Weekly downloads
-
License
-
Repository
-
Last release
11 months ago

vue-ui

一个简单的 vue3 ui 组件库 主要记录一些平时常用的组件,指令,工具函数,hooks等等。

使用

<script lang="ts">
export default {
  name: 'App'
}
</script>
<script setup lang="ts">
import { MaxHeight } from '@tikkhun/vue-ui'
</script>

<template>
  <div class="App">
    App
    <MaxHeight>
      <template #default="{ height }">
        <div :style="{ height: height + 'px', background: 'green' }">{{ height }}</div>
      </template>
    </MaxHeight>
  </div>
</template>

<style lang="scss" scoped></style>
0.0.3

11 months ago

0.0.2

12 months ago

0.0.1

12 months ago

0.0.0

12 months ago