Files
SaaS-lib/lib/component/form/input/input-password.vue

16 lines
390 B
Vue
Raw Normal View History

2024-05-15 17:29:42 +08:00
<template>
<a-input-password>
<template #[item]="data" v-for="item in Object.keys($slots)" :key="item">
<slot :name="item" v-bind="data || {}"> </slot>
</template>
</a-input-password>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
name: 'NsInputPassword',
});
</script>
<style lang="less" scoped></style>