一、问题背景
我们先来看这样一个背景,如果有一个学生类,成员属性有姓名name(String),年龄age(int),分数score(double).
public class Test {class student{String name;int age;double score;public student(String name, int age, double score) {th…
1、绑定容器,el与$mount的异同
<body><div id"root"><h1>你好,{{name}}</h1></div>
</body>
<script>const vm new Vue({//el:#root, //第一中写法,new的时候直接写好eldata:{name:…