coreui-vue
                                
                                 coreui-vue copied to clipboard
                                
                                    coreui-vue copied to clipboard
                            
                            
                            
                        CMultiSelect - If user click on X to remove and CMultiSelect is inside <form />, page is submitted
Hi! And thank you for looking at my issue. Has title mention, I have this weird issue where if the CMultiSelect is inside a
, the submit happens. I went in the html and it seems like the x button is missing type='button' since the default value of type is 'submit' :<template>          
  <CContainer fluid class="step-container py-2">
    <!-- no issue here -->
    <CFormMultiSelect id="customId"
        label="custom label"
        :options="getOptions()"
        v-model="customModel" />
    <form>
      <!-- issue here -->
      <CFormMultiSelect id="customId2"
        label="custom label 2"
        :options="getOptions()"
        v-model="customModel" />