DemoSwitchLabelSlot.vue 298 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <script lang="ts" setup> const switchMe = ref(false) </script> <template> <VSwitch v-model="switchMe"> <template #label> Turn on the progress: <VProgressCircular :indeterminate="switchMe" size="24" class="ms-2" /> </template> </VSwitch> </template>