111
jhzh
2024-05-17 3a34daa4a070e3c13e399dad567e78b5a136e2c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
  <span>
    <span v-if="flg">{{ text ? text : "--" }}</span>
    <span v-else>****</span>
  </span>
</template>
 
<script>
export default {
  props: {
    text: {
      type: String,
      default: "",
    },
    flg: {
      type: Boolean,
      default: true,
    },
  },
};
</script>
 
<style>
</style>