DemoSwitchInset.vue 408 Bytes
<script lang="ts" setup>
const insetSwitch1 = ref(true)
const insetSwitch2 = ref(false)
</script>

<template>
  <div class="demo-space-x">
    <VSwitch
      v-model="insetSwitch1"
      :inset="false"
      :label="`Switch 1: ${insetSwitch1.toString()}`"
    />
    <VSwitch
      v-model="insetSwitch2"
      :inset="false"
      :label="`Switch 2: ${insetSwitch2.toString()}`"
    />
  </div>
</template>