Detailed explanation of Vue mixin

Detailed explanation of Vue mixin

insert image description here

Local Mixin

<template>
  <div>
    <h2 @click="showName">Student name: {{name}}</h2>
    <h2>Student gender: {{sex}}</h2>
  </div>
</template>

<script>
  //Introduce a mixed import {
    hunhe,hunhe2
  } from '../mixin'
  export default {
    name: 'Student',
    data() {
      return {
        name: 'Zhang San',
        sex: 'male'
      }
    },
    mixins: [hunhe,hunhe2]
  }

</script>

export const hunhe = {
    methods: {
        showName() {
            alert(this.name)
        }
    }
}

export const hunhe2 = {
    data() {
        return {
            x: 100,
            y: 200
        }
    }

}

Global Mixins

import { hunhe, hunhe2 } from './mixin'
Vue.mixin(hunhe)
Vue.mixin(hunhe2)

insert image description here

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • A brief discussion on how Vue3 Composition API replaces Vue Mixins
  • How to use mixins in Vue
  • Detailed explanation of Vue mixin usage and option merging
  • Web project development VUE mixing and inheritance principle
  • Vue detailed explanation of mixins usage
  • How to use Vue3 mixin

<<:  CSS3 uses scale() and rotate() to achieve zooming and rotation

>>:  Blog Design Web Design Debut

Recommend

How to implement responsive layout with CSS

Implementing responsive layout with CSS Responsiv...

MySQL 8.0.12 decompression version installation tutorial personal test!

Mysql8.0.12 decompression version installation me...

In-depth understanding of mathematical expressions in CSS calc()

The mathematical expression calc() is a function ...

How to elegantly implement the mobile login and registration module in vue3

Table of contents Preface Input box component lay...

HTML Nine-grid Layout Implementation Method

Diversifying website layouts is our front-end spe...

Centos7 installation of MySQL8 tutorial

MySQL 8 new features: My personal opinion on MySQ...

Install Docker on CentOS 7

If you don't have a Linux system, please refe...

Linux uses if to determine whether a directory exists.

How to use if in Linux to determine whether a dir...

Teach you how to make cool barcode effects

statement : This article teaches you how to imple...

Based on JavaScript ES new features let and const keywords

Table of contents 1. let keyword 1.1 Basic Usage ...

Web page text design should be like smart girls wearing clothes

<br />"There are no ugly women in the w...

SQL implementation of LeetCode (182. Duplicate mailboxes)

[LeetCode] 182.Duplicate Emails Write a SQL query...

Problems and solutions encountered when connecting node to mysql database

I installed a new version of MySQL (8.0.21) today...

VMware Workstation Pro installs Win10 pure version operating system

This article describes the steps to install the p...