mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-30 22:42:41 +08:00
33 lines
720 B
Markdown
33 lines
720 B
Markdown
```html
|
|
<template>
|
|
<Dropdown :data="data2">
|
|
<Wb-button type="primary">Hover</Wb-button>
|
|
</Dropdown>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
|
|
data: function() {
|
|
return {
|
|
data2: [
|
|
{
|
|
content: 'number 1'
|
|
},
|
|
{
|
|
content: 'number 2'
|
|
},
|
|
{
|
|
content: 'number 3',
|
|
disabled: true
|
|
},
|
|
{
|
|
content: 'number 4',
|
|
divided: true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
```
|