soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
210 Bytes
<script>
import { h } from 'vue'
function Functional(props, context) {
return h('div', context.attrs, props.msg)
}
Functional.props = {
msg: {
type: String,
},
}
export default Functional
</script>