Skip to content
This repository was archived by the owner on Apr 16, 2021. It is now read-only.

Latest commit

 

History

History
19 lines (19 loc) · 277 Bytes

textLeftCode.md

File metadata and controls

19 lines (19 loc) · 277 Bytes
<template>
  <ou-toggle
    type='textLeft'
    v-model='toggle'
    on-label='On'
    off-label='Off'
    description='Let apps use my location' />
</template>
<script>
  export default {
    data() {
      return {
        toggle: false
      };
    }
  };
</script>