import { App, defineComponent, reactive } from 'vue'; const Foo = defineComponent({ name: 'foo', props: ['title'], template: `
{{title}}
`, // 渲染正常 }); Foo.install = (app: App) => { app.component(Foo.name, Foo); }; export default Foo;