05 2022 档案
摘要:<template> <div class="hello"> <p>所有车位:{{total}}</p> <p>虚拟车位:{{this.form.virtual}}</p> <p>固定车位:{{this.form.fixedparking}}</p> <button @click="form.vir
阅读全文
摘要:npm install clipboard 先安装clipboard <template> <div> <div v-for="item in list" :key="item.id"> //data-clipboard-text作为当前点击需要复制的内容 <div class="btn" @cli
阅读全文
摘要:What is Vue? 什么是Vue Vue(pronounced/vju:/,like view) is a javascript framework for building user interfaces.It builds on top of standard HTML,CSS and J
阅读全文
摘要:function Person(name){ this.name = name } let person = new Person('xiaoming') person.__proto__ Person.prototype 对象的__proto__ 构造函数的prototype Person.__p
阅读全文