File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 7272 <template v-if =" mode == ' single' && hasSelected && ! search && iv " >
7373 <slot name =" singlelabel" :value =" iv" >
7474 <div :class =" classList.singleLabel" >
75- <span :class =" classList.singleLabelText" >{{ iv[label] }} </span >
75+ <span :class =" classList.singleLabelText" v-html = " iv[label]" > </span >
7676 </div >
7777 </slot >
7878 </template >
7979
8080 <!-- Multiple label -->
8181 <template v-if =" mode == ' multiple' && hasSelected && ! search " >
8282 <slot name =" multiplelabel" :values =" iv" >
83- <div :class =" classList.multipleLabel" >
84- {{ multipleLabelText }}
85- </div >
83+ <div :class =" classList.multipleLabel" v-html =" multipleLabelText" ></div >
8684 </slot >
8785 </template >
8886
131129 @click =" handleGroupClick(group)"
132130 >
133131 <slot name =" grouplabel" :group =" group" >
134- <span >{{ group[groupLabel] }} </span >
132+ <span v-html = " group[groupLabel]" > </span >
135133 </slot >
136134 </div >
137135
145143 @click =" handleOptionClick(option)"
146144 >
147145 <slot name =" option" :option =" option" :search =" search" >
148- <span >{{ option[label] }} </span >
146+ <span v-html = " option[label]" > </span >
149147 </slot >
150148 </li >
151149 </ul >
161159 @click =" handleOptionClick(option)"
162160 >
163161 <slot name =" option" :option =" option" :search =" search" >
164- <span >{{ option[label] }} </span >
162+ <span v-html = " option[label]" > </span >
165163 </slot >
166164 </li >
167165 </template >
You can’t perform that action at this time.
0 commit comments