@opensig/opendesign
Version:
<p align="center"><img src="../docs/public/opendesign-logo-light.png"/></p> <h1 align="center">opendesign</h1> <p align="center">一个 Vue 3 组件库</p> <p align="center"><b>皮肤可定制,使用 TypeScript</b></p>
21 lines (20 loc) • 451 B
JavaScript
;
const vue = require("vue");
let globalId = 0;
const _sfc_main = vue.defineComponent({
name: "OIconChevronDown",
svgType: "fill",
setup() {
const classNames = ["o-svg-icon", "o-icon-chevron-down", "type-fill"];
const isClient = vue.ref(false);
vue.onMounted(() => {
isClient.value = true;
});
return {
isClient,
classNames,
globalId: globalId++
};
}
});
module.exports = _sfc_main;