cione-comp-lib
Version:
`$ yarn add cione-comp-lib` 或者 `$ npm i cione-comp-lib -S`
23 lines (22 loc) • 736 B
JavaScript
import { openBlock, createElementBlock, normalizeClass, toDisplayString } from "vue";
import style0 from "./Logo.vue_used_vue_type_style_index_0_lang.module.mjs";
import _export_sfc from "../../../_virtual/plugin-vue_export-helper.mjs";
const _sfc_main = {
name: "Logo",
props: {
title: {
type: String,
required: true
}
}
};
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("div", {
class: normalizeClass(_ctx.$style.logo)
}, toDisplayString($props.title), 3);
}
const cssModules = {
"$style": style0
};
var Logo = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__cssModules", cssModules]]);
export { Logo as default };