翻譯|使用教程|編輯:龔雪|2022-07-26 10:32:58.120|閱讀 159 次
概述:本文主要為大家介紹如何開始使用Kendo UI for Vue的按鈕組件,歡迎下載最新版控件體驗!
# 界面/圖表報表/文檔/IDE等千款熱門軟控件火熱銷售中 >>
相關(guān)鏈接:
Kendo UI for Vue Button提供了可點擊的UI功能,使您能夠僅顯示文本內(nèi)容,或顯示預(yù)定義的圖標、圖像和自定義圖標,并呈現(xiàn)文本和圖像內(nèi)容的組合。
Kendo UI for Vue Button組件是Kendo UI for Vue庫中的Vue UI組件部分,它通過kendo-vue-buttons包下的NPM分發(fā)。
下面的示例演示了 Button 的作用。
main.vue
<template> <div class="row example-wrapper"> <div class="col-xs-12 col-sm-6 example-col"> <p>Default k-buttons</p> <p> <kbutton>Browse</kbutton> <kbutton :icon="'folder'">Browse</kbutton> <kbutton :icon="'folder'"></kbutton> </p> <p> <kbutton :disabled="true">Browse</kbutton> <kbutton :icon="'folder'" :disabled="true">Browse</kbutton> <kbutton :icon="'folder'" :disabled="true"></kbutton> </p> </div> <div class="col-xs-12 col-sm-6 example-col"> <p>Default k-buttons (Primary)</p> <p> <kbutton :theme-color="'primary'">Browse</kbutton> <kbutton :icon="'folder'" :theme-color="'primary'">Browse</kbutton> <kbutton :icon="'folder'" :theme-color="'primary'"></kbutton> </p> <p> <kbutton :theme-color="'primary'" :disabled="true">Browse</kbutton> <kbutton :icon="'folder'" :theme-color="'primary'" :disabled="true" >Browse</kbutton > <kbutton :icon="'folder'" :theme-color="'primary'" :disabled="true" ></kbutton> </p> </div> <div class="col-xs-12 col-sm-6 example-col"> <p>Flat k-buttons</p> <p> <kbutton :fill-mode="'flat'">Browse</kbutton> <kbutton :icon="'folder'" :fill-mode="'flat'">Browse</kbutton> <kbutton :icon="'folder'" :fill-mode="'flat'"></kbutton> </p> <p> <kbutton :fill-mode="'flat'" :disabled="true">Browse</kbutton> <kbutton :icon="'folder'" :fill-mode="'flat'" :disabled="true" >Browse</kbutton > <kbutton :icon="'folder'" :fill-mode="'flat'" :disabled="true" ></kbutton> </p> </div> <div class="col-xs-12 col-sm-6 example-col"> <p>Flat k-buttons (Primary)</p> <p> <kbutton :theme-color="'primary'" :fill-mode="'flat'">Browse</kbutton> <kbutton :icon="'folder'" :theme-color="'primary'" :fill-mode="'flat'" >Browse</kbutton > <kbutton :icon="'folder'" :theme-color="'primary'" :fill-mode="'flat'" ></kbutton> </p> <p> <kbutton :theme-color="'primary'" :fill-mode="'flat'" :disabled="true" >Browse</kbutton > <kbutton :icon="'folder'" :theme-color="'primary'" :fill-mode="'flat'" :disabled="true" >Browse</kbutton > <kbutton :icon="'folder'" :theme-color="'primary'" :fill-mode="'flat'" :disabled="true" ></kbutton> </p> </div> <div class="col-xs-12 col-sm-6 example-col"> <p>Outline k-buttons</p> <p> <kbutton :fill-mode="'outline'">Browse</kbutton> <kbutton :icon="'folder'" :fill-mode="'outline'">Browse</kbutton> <kbutton :icon="'folder'" :fill-mode="'outline'"></kbutton> </p> <p> <kbutton :fill-mode="'outline'" :disabled="true">Browse</kbutton> <kbutton :icon="'folder'" :fill-mode="'outline'" :disabled="true" >Browse</kbutton > <kbutton :icon="'folder'" :fill-mode="'outline'" :disabled="true" ></kbutton> </p> </div> <div class="col-xs-12 col-sm-6 example-col"> <p>Outline k-buttons (Primary)</p> <p> <kbutton :theme-color="'primary'" :fill-mode="'outline'" >Browse</kbutton > <kbutton :icon="'folder'" :theme-color="'primary'" :fill-mode="'outline'" >Browse</kbutton > <kbutton :icon="'folder'" :theme-color="'primary'" :fill-mode="'outline'" ></kbutton> </p> <p> <kbutton :theme-color="'primary'" :fill-mode="'outline'" :disabled="true" >Browse</kbutton > <kbutton :icon="'folder'" :theme-color="'primary'" :fill-mode="'outline'" :disabled="true" >Browse</kbutton > <kbutton :icon="'folder'" :theme-color="'primary'" :fill-mode="'outline'" :disabled="true" ></kbutton> </p> </div> <div class="col-xs-12 example-col"> <p>Icon Types</p> <kbutton :icon="'calendar'">Kendo UI for Vue Font Icon</kbutton> <kbutton :icon-class="'fa fa-calendar fa-fw'">Font Awesome Icon</kbutton> <kbutton :image-url="'//demos.telerik.com/kendo-ui/content/shared/icons/sports/snowboarding.png'" >Image Icon</kbutton > </div> </div> </template> <script> import { Button, ButtonGroup } from '@progress/kendo-vue-buttons'; export default { components: { kbutton: Button, buttongroup: ButtonGroup, }, }; </script> <style scoped> .k-button { margin-right: 3px; } .k-button > .k-image { width: 20px; height: 20px; } </style>
main.js
import { createApp } from 'vue' import App from './main.vue' createApp(App).mount('#app')
下面的示例演示了基本的 Button 事件。
main.vue
<template> <div class="example-config"> <kbutton @click="handleDomEvent" @mousedown="handleDomEvent" @mouseup="handleDomEvent" @focus="handleDomEvent" @blur="handleDomEvent" @keypress="handleDomEvent" > My Button </kbutton> <h5>{{title}}</h5> <ul class="event-log"> <li v-for="log in logs" :key="log">{{log}}</li> </ul> </div> </template> <script> import { Button } from '@progress/kendo-vue-buttons'; export default { components: { 'kbutton': Button }, data () { return { logs: [] }; }, methods: { handleDomEvent (event) { this.logs.unshift(event.type); } } } </script>
main.js
import { createApp } from 'vue' import App from './main.vue' createApp(App).mount('#app')
Kendo UI致力于新的開發(fā),來滿足不斷變化的需求。Kendo UI for Vue使用旨在提高性能和豐富用戶體驗的Vue組件,幫助開發(fā)人員構(gòu)建下一代應(yīng)用程序。它是為Vue技術(shù)框架提供可用的Kendo UI組件,以便更快地構(gòu)建更好的Vue應(yīng)用程序。
Telerik_KendoUI產(chǎn)品技術(shù)交流群:726377843 歡迎一起進群討論
本站文章除注明轉(zhuǎn)載外,均為本站原創(chuàng)或翻譯。歡迎任何形式的轉(zhuǎn)載,但請務(wù)必注明出處、不得修改原文相關(guān)鏈接,如果存在內(nèi)容上的異議請郵件反饋至chenjj@fc6vip.cn
文章轉(zhuǎn)載自:慧都網(wǎng)