mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 04:59:02 +08:00
10 lines
162 B
JavaScript
10 lines
162 B
JavaScript
import m from "mithril";
|
|
|
|
export default function Name() {
|
|
let name = "张三";
|
|
name = "李四";
|
|
return {
|
|
view: () => m("h1", `你好 ${name}`),
|
|
};
|
|
}
|