let vm = new Vue({ el: '#app1', delimiters: ['[[', ']]'], data: { username:'', }, mounted(){ // 获取cookie中的用户名 this.username = getCookie('username'); }, });