File size: 210 Bytes
4d70170
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<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>