clodop-designer-v3
v0.0.5
Published
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
Downloads
3
Readme
Vue 3 + Vite
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 <script setup>
SFCs, check out the script setup docs to learn more.
Recommended IDE Setup
- VS Code + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
source: kr-print-designer
use:
import { createApp } from 'vue' import App from './App.vue'
import vuePrintDesigner from 'clodop-designer-v3' // 样式引用 import '../dist/style.css'
const app = createApp(App) // 注册 app.use(vuePrintDesigner); app.mount('#app')