Null.vue 731 Bytes
Newer Older
耿迪迪's avatar
耿迪迪 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
<!--
 * @Author: 纪泽龙 jizelong@qq.com
 * @Date: 2022-06-17 10:15:20
 * @LastEditors: 纪泽龙 jizelong@qq.com
 * @LastEditTime: 2022-06-20 16:04:07
 * @FilePath: /danger-manage-web/src/components/bigWindow/Null.vue
 * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<template>
  <!-- <div class="nulll">123</div> -->
  <div></div>
</template>

<script>
export default {
  name: '',
  data () {
    return {

      // 证明为空
      myNull:true,
    }
  },
  methods: {}
}
</script>
<style lang="scss" scoped>
.nulll{
  // width: 200px;
  // height: 200px;
  // background-color: red;
}
</style>