Blame view

src/views/sys/lock/index.vue 426 Bytes
陈文彬 authored
1
<template>
vben authored
2
3
4
  <transition name="fade-bottom" mode="out-in">
    <LockPage v-if="getIsLock" />
  </transition>
陈文彬 authored
5
6
</template>
<script lang="ts">
vben authored
7
8
9
  import { defineComponent } from 'vue';
  import LockPage from './LockPage.vue';
  import { getIsLock } from '/@/hooks/web/useLockPage';
陈文彬 authored
10
  export default defineComponent({
vben authored
11
12
    name: 'Lock',
    components: { LockPage },
陈文彬 authored
13
    setup() {
vben authored
14
      return { getIsLock };
陈文彬 authored
15
16
17
    },
  });
</script>