zzzz
2024-04-23 e63a9fa2b9a3d184bec76b9ce9a779c6902f91d9
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 | _toString }}</span>
    <span v-else>****</span>
  </span>
</template>
 
<script>
export default {
  props: {
    text: {
      type: String,
      default: "",
    },
    flg: {
      type: Boolean,
      default: true,
    },
  },
};
</script>
 
<style>
</style>