push
This commit is contained in:
15
lib/component/form/input/input-password.vue
Normal file
15
lib/component/form/input/input-password.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user