How can I import component A with props and pass it to another component B for rendering?
import MyComponent from '/MyComponent.vue'
computed: {
compnt: function () {
var comp = MyComponent
// How can I set props to MyComponent?
return comp
}
}
What steps should I take to successfully set props for component A?