文章加密

;

2021年6月23日 星期三

The Odin Project 和 Udemy: The Web Developer Bootcamp (未完, 有趣)

 The Odin Project 和 Udemy: The Web Developer Bootcamp—前著是美國知名 Online Bootcamp: Thinkful 所提供免費培訓全端網頁開發人員的課程;後者則是由一位 Bootcamp 教師設計和教學的全端網頁開發課程


 The Odin Project : https://www.theodinproject.com/


Udemy: The Web Developer Bootcamp: https://www.udemy.com/course/the-web-developer-bootcamp/


更多這邊看,這個作者的都看來都很不錯! https://mike-huang-mikank.medium.com/

前端學習 加工具介紹

 https://frontendmasters.com/books/front-end-handbook/2017/tools/placeholder.html

youtube 如何自製影片下載

2021年6月21日 星期一

2021年6月17日 星期四

為什麼router-view切換 會重整頁面? 和 Missing Trailing slash for named routes in strict mode

 redirect("https://xxx.com/") 因為戴https,所以一定會重打



Missing Trailing slash for named routes in strict mode: 

{
            path: ":test1/:test?/",
            name: "Test",
            component: Deals,
            pathToRegexpOptions: {
              strict: true
            },
          }

reference: https://github.com/vuejs/vue-router/issues/2913