<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>