docs_vue2/one/docs/demo/dropdown/style.vue
2021-09-15 20:03:51 +08:00

60 lines
841 B
Vue

<template>
<article>
<veui-dropdown
label="Primary"
ui="primary"
:options="options"
/>
<veui-dropdown
label="Default"
:options="options"
/>
<veui-dropdown
label="Normal"
ui="normal"
:options="options"
/>
<veui-dropdown
label="Text"
ui="text"
:options="options"
/>
</article>
</template>
<script>
import { Dropdown } from 'veui'
export default {
components: {
'veui-dropdown': Dropdown
},
data () {
return {
options: [
{
label: '新建',
value: 'create'
},
{
label: '编辑',
value: 'edit'
},
{
label: '删除',
value: 'remove'
}
]
}
}
}
</script>
<style lang="less" scoped>
.veui-dropdown {
& + & {
margin-left: 1em;
}
}
</style>