soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
247 Bytes
import { defineComponent, h, reactive } from 'vue'
export default defineComponent({
name: 'SetupRender',
setup() {
const state = reactive({
name: 'Foo bar',
})
return () => {
return h('h1', state.name)
}
},
})