const STORAGY_KEY = 'demo-vue'
const todosStorage = {
fetch: function () {
return JSON.parse(localStorage.getItem(STORAGY_KEY ) || '[]')
},
save: function (items) {
localStorage.setItem(STORAGY_KEY , JSON.stringify(items))
}
浙公网安备 33010602011771号