0.0.5 • Published 20 days ago

vue-loong-ui v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
20 days ago

vue-loong-ui

_该组件库采用 Vue@3.4.19+ TypeScript@5.3.3 + Vite@5.1.4 + Sass@1.71.1 实现! 目前具有富文本编辑器组件,并且持续探索更新中...! 开箱即用!_

Install & Use

pnpm i vue-loong-ui
# or
npm install vue-loong-ui
# or
yarn add vue-loong-ui

Import and register component

Global

import { createApp } from 'vue'
import App from './App.vue'

import VueLoongUI from 'vue-loong-ui'
import 'vue-loong-ui/css'

const app = createApp(App)
app.use(VueLoongUI)

Local

<script setup lang="ts">
import { Editor } from 'vue-loong-ui'
import 'vue-loong-ui/css'
</script>

Components

Component nameDescriptionsComponent nameDescriptions
EditorThis is a rich text editor customized for secondary development based on Wangeditor. It has the functions of pasting Word images and text, uploading images and videos on the front-end, markdown input, uploading attachment, and mention functions.Ellipsis文本省略
-持续更新...