vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
323 B
24 lines
323 B
<docs> |
|
--- |
|
order: 0 |
|
title: |
|
zh-CN: 无边框 |
|
en-US: Borderless |
|
--- |
|
|
|
## zh-CN |
|
|
|
没有边框。 |
|
|
|
## en-US |
|
|
|
No border. |
|
|
|
</docs> |
|
<template> |
|
<a-input v-model:value="value" :bordered="false" placeholder="Borderless" /> |
|
</template> |
|
<script lang="ts" setup> |
|
import { ref } from 'vue'; |
|
const value = ref<string>(''); |
|
</script>
|
|
|