Vue.JS - how to use localstorage with Vue.JS

前端 未结 3 1349
梦谈多话
梦谈多话 2021-01-01 08:54

I am working on Markdown editor with Vue.JS, and I tried to use localstorage with it to save data but I don\'t know how to save new value to data variables in Vue.JS wheneve

3条回答
  •  孤城傲影
    2021-01-01 09:29

    You can just do following to save in localStorage

    localStorage.setItem('YourItem', response.data)
    

    You can fetch this using:

    localStorage.getItem('YourItem')
    

    To delete this from localStorage:

    localStorage.removeItem('YourItem')
    

提交回复
热议问题