0.1.9 • Published 1 year ago

better-svg v0.1.9

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

BETTER-SVG

better-svg是面向web环境进行svg文件的动态生成与内容监控的工具。

安装

# npm
npm install better-svg

# yarn
yarn add better-svg

使用

// 
<template>

</template>
<script>
import { createSvg } from 'better-svg'
export default {
	data() {...},
	methods: {
		async init(){
			let content = await loadSvg(this.svgSrc)
		}
	}
}
</script>