this.$ls.get与localStorage.getItem有区别吗
时间: 2024-05-29 16:08:53 浏览: 114
vue-local-storage:具有类型支持的Vue.js localStorage插件
两者都可以用来获取本地存储的值,但是this.$ls.get是Vue.js的插件中的方法,而localStorage.getItem是原生JavaScript中的方法。this.$ls.get更加简单易用,可以直接使用this.$ls.get(key)来获取存储的值,而localStorage.getItem需要使用localStorage.getItem(key)来获取存储的值。
阅读全文