mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
8 lines
130 B
TypeScript
8 lines
130 B
TypeScript
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
setup() {
|
|
return () => 'hello ts';
|
|
}
|
|
});
|