2020-08-27 17:18:57 +08:00

39 lines
1.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="article">
<h2>{{$t('overview')}}</h2>
<p>操作Storage包含cookiesessionStoragelocalStorage category值SESSION对应sessionStorageLOCAL对应localStorageCOOKIE对应cookie</p>
<h2>函数</h2>
<ul>
<li>
<p>set(key, value, category = SESSION, expired)</p>
<p>
往Storage中存入一个值
</p>
</li>
<li>
<p>get(key, category = SESSION)</p>
<p>
从Storage中取得值
</p>
</li>
<li>
<p>clear(category = SESSION)</p>
<p>
清除所有值
</p>
</li>
<li>
<p>remove(key, category = SESSION)</p>
<p>
删除key对应的值
</p>
</li>
</ul>
</div>
</template>
<script type="text/ecmascript-6">
export default {
};
</script>