waterfall #
常用的操作按钮
使用
type
,plain
,round
来定义 Button 的样式
<template>
<lx-button style="color: red">Small</lx-button>
<lx-button type="size">Middle</lx-button>
<lx-button>Large</lx-button>
<lx-button disabled>Disabled</lx-button>
</template>
<style>
lx-button {
margin: 0 20px;
}
</style>
显示代码
复制代码片段