chore: remove wip code

This commit is contained in:
Evan You 2020-09-15 12:41:56 -04:00
parent 4fd468aced
commit 37e686f25e

View File

@ -176,14 +176,3 @@ export function defineComponent<
export function defineComponent(options: unknown) { export function defineComponent(options: unknown) {
return isFunction(options) ? { setup: options, name: options.name } : options return isFunction(options) ? { setup: options, name: options.name } : options
} }
defineComponent({
async setup() {
return {
a: 123
}
},
render() {
this.a
}
})