您好,登錄后才能下訂單哦!
本篇文章主要探討vue制作自定義按鈕的方法的解決方法。有一定的參考價值,有需要的朋友可以參考一下,跟隨小編一起來看解決方法吧。
在實際開發項目中,有時我們會用到自定義按鈕;因為一個項目中,眾多的頁面,為了統一風格,我們會重復用到很多相同或相似的按鈕,這時候,自定義按鈕組件就派上了大用場,我們把定義好的按鈕組件導出,在全局引用,就可以在其他組件隨意使用啦,這樣可以大幅度的提高我們的工作效率。
好了,話不多說,上代碼:
img-button.vue//這是我們自定義按鈕組件
<template> <div> <!-- 圖片按鈕 --> <div v-if="type === '查看'" :title="tag === '' ? type : tag" class="img-btn check-img"></div> <div v-if="type === '添加'" :title="tag === '' ? type : tag" class="img-btn add-img"></div> <div v-if="type === '修改'" :title="tag === '' ? type : tag" class="img-btn edit-img"></div> <div v-if="type === '刪除'" :title="tag === '' ? type : tag" class="img-btn delete-img"></div> <div v-if="type === '刷新'" :title="tag === '' ? type : tag" class="img-btn refresh-img"></div> <div v-if="type === '關閉'" :title="tag === '' ? type : tag" class="img-btn close-img"></div> <div v-if="type === '齒輪'" :title="tag === '' ? type : tag" class="img-btn gear-img"></div> <div v-if="type === '平面圖'" :title="tag === '' ? type : tag" class="img-btn plan-img"></div> <div v-if="type === '地圖'" :title="tag === '' ? type : tag" class="img-btn map-img"></div> <div v-if="type === '一般模板'" :title="tag === '' ? type : tag" class="img-btn normal-img"></div> <div v-if="type === '特殊模板'" :title="tag === '' ? type : tag" class="img-btn special-img"></div> <div v-if="type === '折線圖'" :title="tag === '' ? type : tag" class="img-btn line-img"></div> <!-- 文字按鈕 自定義大小--> <div v-if="type === '按鈕'" :title="tag === '' ? name : tag" class="img-btn ibtn">{{name}}</div> <div v-if="type === '小按鈕'" :title="tag === '' ? name : tag">{{name}}</div> <div v-if="type === '普通按鈕'" :title="tag === '' ? name : tag">{{name}}</div> </div> </template> <script> export default { name: 'ImgButton', props: { type: { type: String, default: '' }, name: { type: String, default: '' }, tag: { type: String, default: '' } } } </script> <style scoped> .img-button { vertical-align: middle; display: inline-block; cursor: pointer; margin-right: 10px; .img-btn { .img-no-repeat; width:25px; height:25px; } .img-btn:hover { transform: scale(1.1); } .refresh-img { background-image: url('../../assets/images/button/refresh.png'); } .add-img { background-image: url('../../assets/images/button/add.png'); } .delete-img { background-image: url('../../assets/images/button/delete.png'); } .check-img { background-image: url('../../assets/images/button/check.png'); } .close-img { background-image: url('../../assets/images/button/close.png'); } .edit-img { background-image: url('../../assets/images/button/edit.png'); } .gear-img { background-image: url('../../assets/images/button/gear.png') } .plan-img { background-image: url('../../assets/images/button/plan.png') } .map-img { background-image: url('../../assets/images/button/map.png') } .normal-img { background-image: url('../../assets/images/button/normal.png') } .special-img { background-image: url('../../assets/images/button/special.png') } .line-img { background-image: url('../../assets/images/button/line_chart.png') } .ibtn { width: auto; min-width: 100px; padding: 0 20px; font-size: 17px; height: 30px; line-height: 30px; text-align: center; border-radius:15px; background-color: #2f5d98; vertical-align: middle; color:#00cccc; } .ibtn-samll { .ibtn; height: 25px; padding: 0 2px; font-size: 10px; line-height: 25px; border-radius: 0px; background-color: transparent; border: 1px solid #00cccc; } .ibtn-samll:hover { color: white; border: 1px solid white; } .normal-btn { .ibtn; } .normal-btn:hover { color: white; background-color: #ff9247; } } </style>
在router.js中配置好路由
在main.js中引入
//注冊自定義按鈕 import imgButton from './components/img-button' Vue.use(imgButton)
然后就可以在其他組件使用了
<imgButton type='刷新' @click.native='refreshBtn'></imgButton>
//值得注意的是 自定義按鈕組件添加點擊事件的時候一定要加.native 因為.native 修飾符就是用來注冊元素的原生事件而不是組件自定義事件的
以上就是vue制作自定義按鈕的方法的具體操作,代碼詳細清楚,如果在日常工作遇到這個問題,希望你能通過這篇文章解決問題。如果想了解更多相關內容,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。