0.1.5 • Published 7 months ago

@zhangqingcq/vgce v0.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

VGCE

Vector graphics configure editor. 矢量图组态编辑器。

Guide

  1. install

      npm i @zhangqingcq/vgce element-plus@^2.3.8 ace-builds@^1.14.0 lodash-es^4.17.21 vue-echarts@^6.5.1 animate.css@^4.1.1

    or

      pnpm add @zhangqingcq/vgce element-plus@^2.3.8 ace-builds@^1.14.0 lodash-es^4.17.21 vue-echarts@^6.5.1 animate.css@^4.1.1
  2. change main.ts or main.js

      //main.js or main.ts
    
      import '@zhangqingcq/vgce/dist/style.css'
  3. use editor

       <script setup lang="ts">
         import {SvgEditor} from '@zhangqingcq/vgce'
         
         function preview(d: any) {
           //save d and send it to SvgViewer's data 
         }
       </script>
       <template>
         <SvgEditor @onPreview="preview"/>
       </template>
  4. use viewer
       <script setup lang="ts">
         import {SvgViewer} from '@zhangqingcq/vgce'
       </script>
       <template>
         <SvgViewer :data="xxx"/>
       </template>
  5. custom toolbar

    • copy src/config/ and change as you want

    • put svg files into src/asset/svgs , then file name need to be same with config.name

    • put custom vue components file into src/config/files, then import in src/config/index.ts and export with vueComp

    • PS: you have to install vite-plugin-svg-icons plugin to append your svg to html dom.

      <script setup lang="ts">
        import {SvgEditor} from '@zhangqingcq/vgce'
        import {config} from '@/config'
      </script>
      <template>
        <SvgEditor :customToolbar="config"/>
      </template>
  6. how to use vite-plugin-svg-icons

    • npm i vite-plugin-svg-icons -D or pnpm add vite-plugin-svg-icons -D
    • change vite.config.ts

      // vite.config.ts
      
           import { fileURLToPath, URL } from 'node:url'
           import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
      
           export default defineConfig({
             plugins: [
               xxx,
               createSvgIconsPlugin({
                 iconDirs: [fileURLToPath(new URL('./src/assets/svgs', import.meta.url))], 
                 symbolId: 'svg-[name]',
                 svgoOptions: false,
                 customDomId: '__svg__icons__dom__'//your id, do not use this id!
               })
             ],
             xxx
           })
           ```
    • change main.ts

      // main.ts
      
      import 'virtual:svg-icons-register'
    • PS: if there is error: Cannot find module ‘fast-glob’,then run npm i fast-glob -D or pnpm add fast-glob -D

  7. example

    • download VGCE

    • pnpm i or npm i

    • pnpm dev or npm run dev

0.1.5

7 months ago

0.1.4

7 months ago

0.1.3

7 months ago

0.1.2

8 months ago

0.1.1

8 months ago

0.1.0

8 months ago

0.0.33

8 months ago

0.0.32

8 months ago

0.0.31

8 months ago

0.0.30

8 months ago

0.0.29

8 months ago

0.0.28

8 months ago

0.0.27

8 months ago

0.0.26

8 months ago

0.0.25

8 months ago

0.0.24

8 months ago

0.0.23

8 months ago

0.0.22

8 months ago

0.0.21

8 months ago

0.0.20

9 months ago

0.0.19

9 months ago

0.0.18

10 months ago

0.0.17

10 months ago

0.0.16

10 months ago

0.0.15

10 months ago

0.0.14

10 months ago

0.0.13

10 months ago

0.0.12

10 months ago

0.0.11

10 months ago

0.0.10

10 months ago

0.0.9

10 months ago

0.0.8

10 months ago

0.0.7

10 months ago

0.0.6

10 months ago

0.0.5

10 months ago

0.0.4

10 months ago

0.0.3

10 months ago

0.0.2

10 months ago

0.0.1

10 months ago