J'ai rencontré un problème dans le projet, et maintenant j'ai créé trois fichiers pour le représenter principalement.
Il existe un fichier constructeur calc.js
// Calc.js
function Calc (){
this.a = 1;
this.b = 2;
}
Calc.prototype.setA = function(argument){
this.a = argument;
};
Calc.prototype.setB = function(argument){
this.b = argument;
};
Calc.prototype.calc = function(){
console.log(this.a, this.b);
return this.a * this.b;
};
module.exports = Calc;
Il existe un fichier composant calc.vue
<!-- calc.vue -->
<template>
<p id="calc">
<input type="text" v-model='a' />
<input type="text" v-model='b' />
<span>{{c}}</span>
</p>
</template>
<script>
import Calc from '../../static/js/calc.js'
let calc = new Calc();
export default {
name: 'calc',
data(){
return {
a: 1,
b: 2,
c: 4,
}
},
created(){
this.c = calc.calc();
},
watch: {
a(newV){
calc.setA(newV);
this.c = calc.calc();
},
b(newV){
calc.setB(newV);
this.c = calc.calc();
}
}
}
</script>
Le dernier est le fichier principal, référençant 2 composants calc.vue
<template>
<p id="app">
<calc /> // 第一个
<hr>
<calc /> // 第二个
</p>
</template>
<script>
import calc from './components/calc.vue'
export default {
name: 'app',
components: {
calc
}
}
</script>
<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
L'interface est la suivante
J'ai changé le b du deuxième composant calc.vue en 8
Ensuite, changez le a du premier composant calc.vue en 10
Le principal problème maintenant est que j'ai d'abord modifié b du deuxième composant, puis modifié a du premier composant, et le résultat est devenu 80
Il y a 2 composants mais 2 instances de calc.js ne sont pas générées Pourquoi ? Comment résoudre
Envie de
v-model
改成不一样,试试用props
?