【Scattered arrangement】

1-1 git View the total number of lines of the code project

git log --pretty=tformat: --numstat | awk ‘{ add += $1; subs += $2; loc += $1 - $2 } END { printf “added lines: %s, removed lines: %s, total lines: %s\n”, add, subs, loc }’ -

1-2 cookie

 const cookies = document.cookie.split('; ')
    for (let i = 0; i < cookies.length; i++) {
    
    
      if (cookies[i].split('=')[0] === 'username') {
    
    
        this.ruleForm.creator = cookies[i].split('=')[1]
      }
    }

1-3 [vue] Realize multiple routes share the same page

https://blog.csdn.net/coralime/article/details/115263427

1-4 Vue routing parameter passing When the page is refreshed, the parameter becomes "[object Object]"

https://blog.csdn.net/weixin_45811256/article/details/128039051

1-5 Packaging performance optimization scheme for front-end Vue projects

https://blog.csdn.net/m0_51637686/article/details/117514718

1-6 The type="datetime" of el-date-picker will be assigned by default

https://blog.csdn.net/weixin_34397291/article/details/88767752
https://blog.csdn.net/weixin_49668076/article/details/127303107

element–el-input limits input to numbers and must be greater than 0

https://blog.csdn.net/Schaffer_W/article/details/128833801

How does the el-select of element-ui not display the value, but display the label value corresponding to the value

https://segmentfault.com/a/1190000016737140?utm_source=sf-similar-article

1-1

The interface does not display after element ui el-time-picker assignment (HH:ss)

JS uses try and catch to judge the parsing situation

https://blog.csdn.net/weixin_44029226/article/details/124606509

Guess you like

Origin blog.csdn.net/hannah2233/article/details/129442672