Element Icon - daniel-qa/Vue GitHub Wiki
el-cion #
- 格式
<el-icon>
<ChatDotSquare />
</el-icon
- 使用先要先 include icon
import { ChatDotSquare } from '@element-plus/icons-vue'
- 也要先安裝 icon 套件
# NPM
$ npm install @element-plus/icons-vue
- 範例
<button @click='handClick'>
<el-icon>
<ChatDotSquare />
</el-icon>
新訊息推送功能
</button>
- 範例 (有參數)
<el-icon color="#409efc" class="no-inherit">
<Share />
</el-icon>