如下是简单cookie操作,当前仅限前端实例,具体内容如下 要注意的有两点: 1、cookie内容存贮的名称 2、删除cookie是通过设置过期为过去时间实现的 <body> <button @click=clearCookie()> 清除cookie </button> </body> [removed] let app = new Vue({ el: #app, data: { }, created: function () { this.checkCookie(); },