password.vue 222 B

12345678910111213
  1. <template>
  2. <el-input
  3. v-model="input"
  4. type="password"
  5. placeholder="Please input password"
  6. show-password
  7. />
  8. </template>
  9. <script lang="ts" setup>
  10. import { ref } from 'vue'
  11. const input = ref('')
  12. </script>