UNPKG

vue-simple

Version:

Use Vue in the simplest and easiest way, contain more than one of plugins and other to do that, i hope you will like it.

16 lines (14 loc) 282 B
/** * 获取cookie值 * @param key * @returns {String} */ function getCookie(key) { var arr = null; var reg = new RegExp('(^| )' + key + '=([^;]*)(;|$)'); if (arr = document.cookie.match(reg)) { return unescape(arr[2]); } return null; } export { getCookie };