mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-10-15 03:32:11 +08:00
fix: className替换为class
This commit is contained in:
parent
4f6dc0fcdf
commit
3e72b874c2
@ -33,7 +33,7 @@ export default {
|
||||
if (AText.value) {
|
||||
return (
|
||||
<span
|
||||
className={'fes-layout-icon'}
|
||||
class={'fes-layout-icon'}
|
||||
innerHTML={AText.value}
|
||||
></span>
|
||||
);
|
||||
|
@ -31,7 +31,6 @@ export const MicroApp = defineComponent({
|
||||
},
|
||||
settings: Object,
|
||||
lifeCycles: Object,
|
||||
className: String,
|
||||
},
|
||||
setup(props, { attrs }) {
|
||||
const {
|
||||
@ -163,6 +162,6 @@ export const MicroApp = defineComponent({
|
||||
updateApp();
|
||||
});
|
||||
|
||||
return () => <div ref={containerRef} className={props.className}></div>;
|
||||
return () => <div ref={containerRef}></div>;
|
||||
},
|
||||
});
|
||||
|
@ -16,7 +16,6 @@ export const MicroAppWithMemoHistory = defineComponent({
|
||||
},
|
||||
settings: Object,
|
||||
lifeCycles: Object,
|
||||
className: String,
|
||||
url: String
|
||||
},
|
||||
setup(props, { attrs }) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user