computed: {
componentName() {
return `${this.anyDataString}-${this.propName}`
}
<component :is="propName"></component>
Vue.component(
'async-webpack-example',
// The `import` function returns a Promise.
() => import('./my-async-component')
)