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