load components dynamically based on choice in the current step in Vue-Form-Wizard
问题 I'm trying to load components dynamically based on choice in the current step. For example, the user has 3 choices in the first step and if he chooses choice one, component One will be loaded in 2end step and so on. The question is here is it possible to do something like this? if it is how to do it? 回答1: You just need to check the value of the radio button once you click the choices using v-model in the next step. It uses v-if so the components that are not selected will not render. Check