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.
37 lines
775 B
37 lines
775 B
|
|
<cn>
|
|
#### 基本使用
|
|
基本使用。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Basic Usage
|
|
Basic Usage
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<div>
|
|
<a-select defaultValue="lucy" style="width: 120px" @change="handleChange">
|
|
<a-select-option value="jack">Jack</a-select-option>
|
|
<a-select-option value="lucy">Lucy</a-select-option>
|
|
<a-select-option value="disabled" disabled>Disabled</a-select-option>
|
|
<a-select-option value="Yiminghe">yiminghe</a-select-option>
|
|
</a-select>
|
|
<a-select defaultValue="lucy" style='width: 120px' allowClear disabled>
|
|
<a-select-option value="lucy">Lucy</a-select-option>
|
|
</a-select>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
handleChange(value) {
|
|
console.log(`selected ${value}`);
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
```
|
|
|