@tochno/ui
v1.2.3
Published
Vue3 UI component library.
Maintainers
Readme
Tochno UI
@tochno/ui is a Vue UI Library containing several components and directives for designing user interfaces. The library is based on Vue.js 3 and can easily be integrated in any existing project.
Documentation
Installation
# npm
npm i @tochno/ui
# or yarn
yarn add @tochno/uiImport stylesheet file:
@import url('~@tochno/ui/dist/style.css');Usage
// vue3/App.vue
<template>
<div>
<Button>Click me</Button>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue'
import { Button } from '@tochno/ui'
export default defineComponent({
name: 'App',
components: { Button },
setup() {},
})
</script>