isq-ui
v0.0.7
Published
iSQ UI is an UI framework based on Vue3.0 and written in TypeScript. It's free and open source.
Downloads
1
Readme
iSQ UI
iSQ UI is an UI framework based on Vue3.0 and written in TypeScript. It's free and open source.
Repository
https://github.com/Knight174/iSQ-UI-source
Official Document
https://knight174.github.io/iSQ-UI/
Installing
Using npm:
npm install isq-ui
Using yarn:
yarn add isq-ui
Usage
<template>
<Button>I am a Button</Button>
</template>
<script>
/*
import components and css file from lib of isq-ui
e.g. Using the component of Button.
*/
import { Button } from 'isq-ui'
import 'isq-ui/dist/lib/isq.css'
export default {
name: 'App',
components: {
Button
}
}
</script>