store插件使用

导入store的两种办法
1、

npm install store --save-dev

在angular.cli的script标签中添加

"styles": [
   "styles.css"
],
"scripts": [
    "./node_modules/store/dist/store.legacy.min.js"
],

在需要的地方直接引入

import store from store;

2、在index.html文件中

定义全局变量就可以使用了

declare var store;
...
export class HomePage {
  constructor() {
    console.log(store.enabled, "info");
  }
}

你可能感兴趣的:(sessionstorage,localstorage,angular2,angular4)