mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 18:01:24 +08:00
9 lines
245 B
Vue
9 lines
245 B
Vue
|
<template>
|
||
|
<el-tooltip content="Top center" placement="top">
|
||
|
<el-button>Dark</el-button>
|
||
|
</el-tooltip>
|
||
|
<el-tooltip content="Bottom center" placement="bottom" effect="light">
|
||
|
<el-button>Light</el-button>
|
||
|
</el-tooltip>
|
||
|
</template>
|