mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-29 13:48:55 +08:00
27 lines
551 B
Markdown
27 lines
551 B
Markdown
```html
|
|
<template>
|
|
<Dropdown :data="data1">
|
|
<Wb-button type="primary">Hover</Wb-button>
|
|
</Dropdown>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data: function() {
|
|
return {
|
|
data1: [
|
|
{
|
|
content: 'number 1'
|
|
},
|
|
{
|
|
content: 'number 2'
|
|
},
|
|
{
|
|
content: 'number 3'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
```
|