Vue custom encapsulated button component

Vue custom encapsulated button component

The custom encapsulation code of the vue button component is for your reference. The specific content is as follows

Encapsulate the button component button.vue

<template>
  <button class="button ellipsis" :class="[size,type]">
    <slot />
  </button>
</template>
<script>
export default {
  name: 'Button',
  props: {
    size: {
      type: String,
      default: 'middle'
    },
    type: {
      type: String,
      default: 'default'
    }
  }
}
</script>
<style scoped lang="less">
.button {
  appearance: none;
  border: none;
  outline: none;
  background: #fff;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
}
.large {
  width: 240px;
  height: 50px;
  font-size: 16px;
}
.middle {
  width: 180px;
  height: 50px;
  font-size: 16px;
}
.small {
  width: 100px;
  height: 32px;
  font-size: 14px;  
}
.mini {
  width: 60px;
  height: 32px;
  font-size: 14px;  
}
.default {
  border-color: #e4e4e4;
  color: #666;
}
.primary {
  border-color: #27BA9B;
  background: #27BA9B;;
  color: #fff;
}
.plain {
  border-color:#27BA9B;
  color:#27BA9B;;
  background: lighten(#27BA9B;,50%);
}
.gray {
  border-color: #ccc;
  background: #ccc;;
  color: #fff;
}
</style>

Use of package components

<Button type="primary" style="margin-top:20px;">Custom button name</Button>
<Button type="primary" style="margin-top:20px;">Add to Cart</Button>

Achieve results

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of the event of triggering child components by clicking buttons in parent components in Vue
  • Vue click button to dynamically create and delete component functions
  • Vue implements the custom component function of password display and hide buttons
  • Vue form validation button event is triggered by the parent component
  • Vue click button to realize dynamic mounting of subcomponents
  • Vue ripple button component production
  • Vue develops a sample code of a button component
  • Modify the state instance code of the input box after clicking the button in the vue component

<<:  Difference between MySQL btree index and hash index

>>:  Complete steps to solve 403 forbidden in Nginx

Recommend

Mybatis implements SQL query interception and modification details

Preface One of the functions of an interceptor is...

Linux installation apache server configuration process

Prepare the bags Install Check if Apache is alrea...

A brief discussion on the solution to excessive data in ElementUI el-select

Table of contents 1. Scenario Description 2. Solu...

Analysis of several reasons why Iframe should be used less

The following graph shows how time-consuming it is...

About deploying a web project to Alibaba Cloud Server (5 steps to do it)

1. First log in to the Alibaba Cloud website to r...

js implements a simple English-Chinese dictionary

This article shares the specific code of js to im...

Example of using negative margin to achieve average layout in CSS

For evenly distributed layouts, we generally use ...

HTML reuse techniques

HTML reuse is a term that is rarely mentioned. Tod...

Learn the operating mechanism of jsBridge in one article

Table of contents js calling method Android 1.js ...

Steps to introduce PWA into Vue project

Table of contents 1. Install dependencies 2. Conf...

How to use Zen coding in Dreamweaver

After I published my last article “Zen Coding: A Q...

Let's learn about the MySQL storage engine

Table of contents Preface 1. MySQL main storage e...

MySQL 8.0.12 installation and configuration graphic tutorial

Recorded the download and installation tutorial o...

Detailed steps to expand LVM disk in Linux

1. Add a hard disk 2. Check the partition status:...