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 Mixinsimport { hunhe, hunhe2 } from './mixin' Vue.mixin(hunhe) Vue.mixin(hunhe2) SummarizeThis 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:
|
<<: CSS3 uses scale() and rotate() to achieve zooming and rotation
>>: Blog Design Web Design Debut
Implementing responsive layout with CSS Responsiv...
Mysql8.0.12 decompression version installation me...
The mathematical expression calc() is a function ...
Preface In the Linux kernel, in order to be compa...
Table of contents Preface Input box component lay...
Diversifying website layouts is our front-end spe...
MySQL 8 new features: My personal opinion on MySQ...
If you don't have a Linux system, please refe...
How to use if in Linux to determine whether a dir...
statement : This article teaches you how to imple...
Table of contents 1. let keyword 1.1 Basic Usage ...
<br />"There are no ugly women in the w...
[LeetCode] 182.Duplicate Emails Write a SQL query...
I installed a new version of MySQL (8.0.21) today...
This article describes the steps to install the p...