earthsdk-icon
v0.0.10
Published
### yarn
Downloads
116
Readme
安装
yarn
yarn add earthsdk-icon --save
npm
npm i earthsdk-icon --save
使用
按需引入
组件当中
<script setup>
import { Down, Left, Right, Up } from "earthsdk-icon";
export default defineComponent({
components: {Down, Left, Right, Up}
});
</script>
<template>
<Down/>
<Left/>
<Right/>
<Up style="color:red"/>
</template>