mom-ui
Version:
UI framework with vue3 and TS
36 lines (30 loc) • 786 B
Markdown
A simple web UI framework with Vue3 and Typescript.
- Base on **Vue3** which is new to someone
- Written in **Typescript** with Predictable static types
- A set of high-quality vue components
- Follow the **Antd-Design style** which is very popular in the world
- Modern browsers and Internet Explorer 11 (with polyfills)
`npm install mom-ui`
or
`yarn add mom-ui`
Import style manually in `main.ts` or any component:
```
import "mom-ui/dist/lib/mom-ui.css";
```
And import Component in Vue SPA.
```
<template>
<Button @click="onclick">default</Button>
</template>
<script lang="ts">
import { Button } from 'mom-ui';
export default {
components: { Button },
};
</script>
```