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.
60 lines
1.6 KiB
60 lines
1.6 KiB
<docs> |
|
--- |
|
order: 8 |
|
title: |
|
zh-CN: 前置/后置标签 |
|
en-US: Pre / Post tab |
|
--- |
|
|
|
## zh-CN |
|
|
|
用于配置一些固定组合。 |
|
|
|
## en-US |
|
|
|
Using pre & post tabs example. |
|
|
|
</docs> |
|
<template> |
|
<a-space direction="vertical"> |
|
<a-input v-model:value="value1" addon-before="Http://" addon-after=".com" /> |
|
<a-input v-model:value="value2"> |
|
<template #addonBefore> |
|
<a-select v-model:value="value3" style="width: 90px"> |
|
<a-select-option value="Http://">Http://</a-select-option> |
|
<a-select-option value="Https://">Https://</a-select-option> |
|
</a-select> |
|
</template> |
|
<template #addonAfter> |
|
<a-select v-model:value="value4" style="width: 80px"> |
|
<a-select-option value=".com">.com</a-select-option> |
|
<a-select-option value=".jp">.jp</a-select-option> |
|
<a-select-option value=".cn">.cn</a-select-option> |
|
<a-select-option value=".org">.org</a-select-option> |
|
</a-select> |
|
</template> |
|
</a-input> |
|
<a-input v-model:value="value5"> |
|
<template #addonAfter> |
|
<setting-outlined /> |
|
</template> |
|
</a-input> |
|
|
|
<a-input v-model:value="value6"> |
|
<template #addonBefore> |
|
<a-cascader placeholder="cascader" style="width: 150px" /> |
|
</template> |
|
</a-input> |
|
</a-space> |
|
</template> |
|
|
|
<script lang="ts" setup> |
|
import { SettingOutlined } from '@ant-design/icons-vue'; |
|
import { ref } from 'vue'; |
|
const value1 = ref<string>('mysite'); |
|
const value2 = ref<string>('mysite'); |
|
const value3 = ref<string>('Http://'); |
|
const value4 = ref<string>('.com'); |
|
const value5 = ref<string>('mysite'); |
|
const value6 = ref<string>('mysite'); |
|
</script>
|
|
|