前端需要总结的知识点(仅用于自己学习)

前端需要总结的知识点,仅用于自己学习

  • 1.前端需要总结的知识点
    • 1.路由跳转
    • 2.moment的使用
    • 3.ES6之解构,ES6方法
    • 4.Vue-Treeselect ∨
    • 5.settimeout和setinterval区别
    • 6.sessionstorage和localstorage的用法
    • 7.动态生成路由
    • 8.js reduce和map
    • 9. find(),findIndex(),indexOf()的用法与区别∨
    • 10.vue 导出 xlsx∨
    • 11.Array.from()
    • 12.grid.flat(Infinity);∨
    • 13.easyui
    • 14.bootstrap
    • 15.Select2 基于 jQuery 的下拉列表美化插件
    • 16.vuex
    • 17.[element-plus](https://element-plus.gitee.io/zh-CN/component/radio.html)
    • 18.级联选择器-二级多选,一级不多选
    • 19.选择器树形结构,单选
    • 20.vue中的混合mixin
    • 21.强制性赋值
    • 22至少了解一种vue前端框架(element-ui,iview)。
    • 23.有app,小程序项目开发经验(uni,weui,mui)
    • 24.webpack,git,svn
    • 25.vue
    • 26 .Vue无缝滚动
    • 27.vue UI
      • 1.ElementUI 、Element Plus
      • 2.View UI Plus
      • 3.ant-design-vue
      • 4.Naive UI
      • 5.Vant UI
    • 28 前端开发框架

1.前端需要总结的知识点

1.路由跳转

2.moment的使用

3.ES6之解构,ES6方法

4.Vue-Treeselect ∨

官方地址:https://vue-treeselect.js.org/

5.settimeout和setinterval区别

6.sessionstorage和localstorage的用法

  1. localStorage:永久式存储,关闭页面或浏览器之后localStorage存储的数据不会消失。除非主动删除数据,否则永远不会消失。
    以Chrome浏览器为例,数据放在C:\Users\你的计算机名\AppData\Local\Google\Chrome\User Data\Default\Local Storage\leveldb
  2. sessionStorage:仅在当前会话下有效,关闭当前页面或浏览器数据就会被销毁。sessionStorage实在同源的窗口中始终存在是数据,页面刷新还在,只要关闭当前页面就销毁了。
  3. cookie:如果不在浏览器中设置过期时间,cookie被保存在内存中,生命周期随浏览器的关闭而结束,这种cookie简称会话cookie。如果在浏览器中设置了cookie的过期时间,cookie被保存在硬盘中,关闭浏览器后,cookie数据仍然存在,直到过期时间结束才消失。。cookie存放数据大小为4kb左右,一般不能超过20个,不能存储大数据。

7.动态生成路由

8.js reduce和map

9. find(),findIndex(),indexOf()的用法与区别∨

arr.indexOf(0) != arr.lastIndexOf(0)

10.vue 导出 xlsx∨

11.Array.from()

12.grid.flat(Infinity);∨

13.easyui

14.bootstrap

15.Select2 基于 jQuery 的下拉列表美化插件

https://www.bootstrap-table.com.cn/doc/getting-started/usage/

16.vuex

17.element-plus

18.级联选择器-二级多选,一级不多选

19.选择器树形结构,单选

20.vue中的混合mixin

https://www.ruanyifeng.com/blog/javascript/

21.强制性赋值

      this.$set(
        this.ruleForm,
        "avoidRecoverAmount",
        JSON.parse(JSON.stringify(e))
      );
      this.$forceUpdate();

22至少了解一种vue前端框架(element-ui,iview)。

23.有app,小程序项目开发经验(uni,weui,mui)

24.webpack,git,svn

25.vue

https://cn.vuejs.org/guide/introduction.html

26 .Vue无缝滚动

Vue无缝滚动
https://chenxuan1993.gitee.io/component-document/index_prod#/component/seamless-default

27.vue UI

https://cn.vuejs.org/

Vue3的UI

1.ElementUI 、Element Plus

2.View UI Plus

3.ant-design-vue

官网:https://ant.design/index-cn

4.Naive UI

5.Vant UI

三. HeyUI
官网:

https://www.heyui.top/component/

最受欢迎的9个前端UI框架

28 前端开发框架

前端开发框架

你可能感兴趣的:(vue,前端)