この記事では、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 でルーティングを構成します
はじめに
//注册自定义按钮 import imgButton from './components/img-button' Vue.use(imgButton)
を main.js に追加し、他のコンポーネントで使用します。
<imgButton type='刷新' @click.native='refreshBtn'></imgButton>
//クリック イベントをカスタム ボタン コンポーネントに追加するときは、.native を追加する必要があることに注意してください。 .native 修飾子は、コンポーネントのカスタム イベントではなく要素のネイティブ イベントを登録するために使用されます。
この記事はここで終了です。その他の興味深いコンテンツについては、PHP 中国語 Web サイトをご覧くださいJavaScript ビデオ チュートリアル# ## カラム! ! !
以上がVueでカスタムボタンを実装する方法の紹介(コード付き)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。