导入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文件中<script>
<script src="https://cdn.bootcss.com/store.js/1.3.20/store.js"></script>
定义全局变量就可以使用了
declare var store;
...
export class HomePage {
constructor() {
console.log(store.enabled, "info");
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。