vuematerial/vue-material

View on GitHub
docs/app/pages/Components/Switch/examples/SwitchHueColors.vue

Summary

Maintainability
Test Coverage
<template>
  <div>
    <md-switch v-model="boolean">Accent <small>(Default)</small></md-switch>
    <md-switch v-model="boolean" class="md-primary">Primary</md-switch>
  </div>
</template>

<script>
  export default {
    name: 'SwitchHueColors',
    data: () => ({
      boolean: true
    })
  }
</script>

<style lang="scss" scoped>
  .md-switch {
    display: flex;
  }
</style>