Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 622 Bytes

v-disable-focus-section.md

File metadata and controls

26 lines (23 loc) · 622 Bytes

v-disable-focus-section

This directive will make the conponemt unnavigable. See SpatialNavigation.disable(), SpatialNavigation.enable().

<div v-focus-section v-disable-focus-section="disable">
  <div v-focus></div>
</div>

<script>
  export default {
    data() {
      return {
        disable: false,
      };
    },
    methods: {
      changeDisable() {
        this.disable = !this.disable;
      },
    },
  };
</script>