https://github.com/2o3t/2o3t-otui
[Library] OTUI for Vue 组件库
https://github.com/2o3t/2o3t-otui
element-ui library ot-ui ui ui-components uikit vue vue-library vue2 vue3
Last synced: 2 months ago
JSON representation
[Library] OTUI for Vue 组件库
- Host: GitHub
- URL: https://github.com/2o3t/2o3t-otui
- Owner: 2o3t
- Created: 2019-01-09T16:39:50.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T13:23:56.000Z (over 3 years ago)
- Last Synced: 2025-06-11T02:05:35.688Z (about 1 year ago)
- Topics: element-ui, library, ot-ui, ui, ui-components, uikit, vue, vue-library, vue2, vue3
- Language: Vue
- Size: 4.89 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 2O3T-UI
[](https://www.npmjs.com/package/2o3t-ui)


[](http://uikit.2o3t.cn)

## Documentation
Visit [2o3t.cn](https://2o3t.github.io/2o3t-ui).
## init
```js
import '2o3t-icon-font/dist/font-ot.css';
import '2o3t-ui/libs/styles.css';
import OTUI from '2o3t-ui';
// 三方库
const hljs = require('highlight.js');
const markdownit = require('markdown-it');
const cheerio = require('cheerio');
const clipboard = require('clipboard-polyfill');
Vue.use(OTUI, {
global: true,
plugins: {
markdownit,
cheerio,
clipboard,
hljs,
},
});
```
or 引入 CDN
```html
```
```js
import '2o3t-icon-font/dist/font-ot.css';
import '2o3t-ui/libs/styles.css';
import OTUI from '2o3t-ui';
Vue.use(OTUI, {
global: true,
});
```