zzzz
2024-04-23 b6d88ca4a4b0d74c007fb4c574b1baee4aae062e
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>