vue侧边栏组件开发:UI组件库KendoUIfor
vue侧边栏组件开发:UI组件库KendoUIfor<template> <div> <kbutton :icon="'refresh'">Kendo UI for Vue font icon</kbutton> <kbutton :image-url="'https://demos.telerik.com/kendo-ui/content/shared/icons/sports/snowboarding.png'">Image icon</kbutton> <kbutton :icon-class="'fa fa-key fa-fw'">FontAwsome icon</kbutton> </div> </template>
Kendo UI致力于新的开发,来满足不断变化的需求。Kendo UI for Vue使用旨在提高性能和丰富用户体验的Vue组件,帮助开发人员构建下一代应用程序。它是为Vue技术框架提供可用的Kendo UI组件,以便更快地构建更好的Vue应用程序。
您可以通过向其添加图像、预定义或自定义图标来增强 Button 的文本内容。
从 Web 标准的角度来看,最好使用背景图像,因为图标用于装饰而不是表示结构内容。
Kendo UI官方最新版免费下载试用,历史版本下载,在线文档和帮助文件下载-慧都网
Button提供以下选项:
- 使用内置的Kendo UI for Vue图标,内置图标通过icon 属性应用并显示为 Button 的背景。
- 添加image图标,它们通过组件的imageUrl属性应用。
- 添加 FontAwesome 和其他字体图标,它们是通过iconClass属性设置所需的第三方 CSS 类来实现的。
下面的示例演示如何在 Button 中使用不同类型的图标。
main.vue
<template>
<div>
<kbutton :icon="'refresh'">Kendo UI for Vue font icon</kbutton>
<kbutton :image-url="'https://demos.telerik.com/kendo-ui/content/shared/icons/sports/snowboarding.png'">Image icon</kbutton>
<kbutton :icon-class="'fa fa-key fa-fw'">FontAwsome icon</kbutton>
</div>
</template>
<script>
import { Button } from '@progress/kendo-vue-buttons';
export default {
components: {
'kbutton': Button
}
}
</script>
<style>
.k-button .k-button {
margin-left: 5px
}
</style>
main.js
import { createApp } from 'vue'
import App from './main.vue'
createApp(App).mount('#app')