router.replace(...)
+
+
+## router.go(n)
+
+杩欎釜鏂规硶鐨勫弬鏁版槸涓涓暣鏁帮紝鎰忔濇槸鍦 history 璁板綍涓悜鍓嶆垨鑰呭悗閫澶氬皯姝ワ紝绫讳技 window.history.go(n)銆
+
+渚嬪瓙
+
+// 鍦ㄦ祻瑙堝櫒璁板綍涓墠杩涗竴姝ワ紝绛夊悓浜 history.forward()
+router.go(1)
+
+// 鍚庨涓姝ヨ褰曪紝绛夊悓浜 history.back()
+router.go(-1)
+
+// 鍓嶈繘 3 姝ヨ褰
+router.go(3)
+
+// 濡傛灉 history 璁板綍涓嶅鐢紝閭e氨榛橀粯鍦板け璐ュ憲
+router.go(-100)
+router.go(100)
\ No newline at end of file
diff --git "a/\345\217\266\345\270\270\346\230\245/2021-6-19.md" "b/\345\217\266\345\270\270\346\230\245/2021-6-19.md"
new file mode 100644
index 0000000000000000000000000000000000000000..c27c9f018e288c5930b5d0ab991c8bc4ea8658d3
--- /dev/null
+++ "b/\345\217\266\345\270\270\346\230\245/2021-6-19.md"
@@ -0,0 +1,187 @@
+# 鍛藉悕璺敱
+
+const router = new VueRouter({
+ routes: [
+ {
+ path: '/user/:userId',
+ name: 'user',
+ component: User
+ }
+ ]
+})
+
+杩欏氨鏄畝鍗曠矖鐖嗭細
+
+
+瑕侀摼鎺ュ埌涓涓懡鍚嶈矾鐢憋紝鍙互缁 router-link 鐨 to 灞炴т紶涓涓璞★細
+
+User
+
+杩欒窡浠g爜璋冪敤 router.push() 鏄竴鍥炰簨锛
+
+router.push({ name: 'user', params: { userId: 123 } })
+
+# 鍛藉悕瑙嗗浘
+
+鏈夋椂鍊欐兂鍚屾椂 (鍚岀骇) 灞曠ず澶氫釜瑙嗗浘锛岃屼笉鏄祵濂楀睍绀猴細
+
+鎴戞潵鍛婅瘔浣狅細
+
+
+
+
+
+
+
+ const router = new VueRouter({
+ routes: [
+ {
+ path: '/user',
+ name:'user'
+ components: {
+ user:user,
+ login:login,
+ register: register,
+ person:person
+ }
+ }
+ ]
+ })
+
+## 宓屽鍛藉悕瑙嗗浘
+
+
+
User Settings
+
+
+
+
+
+{
+ path: '/settings',
+ // 浣犱篃鍙互鍦ㄩ《绾ц矾鐢卞氨閰嶇疆鍛藉悕瑙嗗浘
+ component: UserSettings,
+ children: [{
+ path: 'emails',
+ component: UserEmailsSubscriptions
+ }, {
+ path: 'profile',
+ components: {
+ default: UserProfile,
+ helper: UserProfilePreview
+ }
+ }]
+}
+
+## 閲嶅畾鍚戝拰鍒悕
+
+閲嶅畾鍚戜篃鏄氳繃 routes 閰嶇疆鏉ュ畬鎴愶紝涓嬮潰渚嬪瓙鏄粠 /a 閲嶅畾鍚戝埌 /b锛
+
+const router = new VueRouter({
+ routes: [
+ { path: '/a', redirect: '/b' }
+ ]
+})
+閲嶅畾鍚戠殑鐩爣涔熷彲浠ユ槸涓涓懡鍚嶇殑璺敱锛
+
+const router = new VueRouter({
+ routes: [
+ { path: '/a', redirect: { name: 'foo' }}
+ ]
+})
+鐢氳嚦鏄竴涓柟娉曪紝鍔ㄦ佽繑鍥為噸瀹氬悜鐩爣锛
+
+const router = new VueRouter({
+ routes: [
+ { path: '/a', redirect: to => {
+ // 鏂规硶鎺ユ敹 鐩爣璺敱 浣滀负鍙傛暟
+ // return 閲嶅畾鍚戠殑 瀛楃涓茶矾寰/璺緞瀵硅薄
+ }}
+ ]
+})
+
+## 鍒悕
+
+鈥滈噸瀹氬悜鈥濈殑鎰忔濇槸锛屽綋鐢ㄦ埛璁块棶 /a鏃讹紝URL 灏嗕細琚浛鎹㈡垚 /b锛岀劧鍚庡尮閰嶈矾鐢变负 /b锛岄偅涔堚滃埆鍚嶁濆張鏄粈涔堝憿锛
+
+/a 鐨勫埆鍚嶆槸 /b锛屾剰鍛崇潃锛屽綋鐢ㄦ埛璁块棶 /b 鏃讹紝URL 浼氫繚鎸佷负 /b锛屼絾鏄矾鐢卞尮閰嶅垯涓 /a锛屽氨鍍忕敤鎴疯闂 /a 涓鏍枫
+
+涓婇潰瀵瑰簲鐨勮矾鐢遍厤缃负锛
+
+const router = new VueRouter({
+ routes: [
+ { path: '/a', component: A, alias: '/b' }
+ ]
+})
+
+## 璺敱缁勪欢浼犲弬
+
+
+const User = {
+ props: ['id'],
+ template: 'User {{ id }}
'
+}
+const router = new VueRouter({
+ routes: [
+ { path: '/user/:id', component: User, props: true },
+
+ // 瀵逛簬鍖呭惈鍛藉悕瑙嗗浘鐨勮矾鐢憋紝浣犲繀椤诲垎鍒负姣忎釜鍛藉悕瑙嗗浘娣诲姞 `props` 閫夐」锛
+ {
+ path: '/user/:id',
+ components: { default: User, sidebar: Sidebar },
+ props: { default: true, sidebar: false }
+ }
+ ]
+})
+
+## 甯冨皵妯″紡
+濡傛灉 props 琚缃负 true锛宺oute.params 灏嗕細琚缃负缁勪欢灞炴с
+
+
+## 瀵硅薄妯″紡
+濡傛灉 props 鏄竴涓璞★紝瀹冧細琚寜鍘熸牱璁剧疆涓虹粍浠跺睘鎬с傚綋 props 鏄潤鎬佺殑鏃跺欐湁鐢ㄣ
+
+const router = new VueRouter({
+ routes: [
+ {
+ path: '/promotion/from-newsletter',
+ component: Promotion,
+ props: { newsletterPopup: false }
+ }
+ ]
+})
+
+## 鍑芥暟妯″紡
+浣犲彲浠ュ垱寤轰竴涓嚱鏁拌繑鍥 props銆傝繖鏍蜂綘渚垮彲浠ュ皢鍙傛暟杞崲鎴愬彟涓绉嶇被鍨嬶紝灏嗛潤鎬佸间笌鍩轰簬璺敱鐨勫肩粨鍚堢瓑绛夈
+
+const router = new VueRouter({
+ routes: [
+ {
+ path: '/search',
+ component: SearchUser,
+ props: route => ({ query: route.query.q })
+ }
+ ]
+})
+URL /search?q=vue 浼氬皢 {query: 'vue'} 浣滀负灞炴т紶閫掔粰 SearchUser 缁勪欢銆
+
+璇峰敖鍙兘淇濇寔 props 鍑芥暟涓烘棤鐘舵佺殑锛屽洜涓哄畠鍙細鍦ㄨ矾鐢卞彂鐢熷彉鍖栨椂璧蜂綔鐢ㄣ傚鏋滀綘闇瑕佺姸鎬佹潵瀹氫箟 props锛岃浣跨敤鍖呰缁勪欢锛岃繖鏍 Vue 鎵嶅彲浠ュ鐘舵佸彉鍖栧仛鍑哄弽搴斻
+
+## HTML5 History 妯″紡
+
+#nginx
+location / {
+ try_files $uri $uri/ /index.html;
+}
+
+## 璀﹀憡
+缁欎釜璀﹀憡锛屽洜涓鸿繖涔堝仛浠ュ悗锛屼綘鐨勬湇鍔″櫒灏变笉鍐嶈繑鍥 404 閿欒椤甸潰锛屽洜涓哄浜庢墍鏈夎矾寰勯兘浼氳繑鍥 index.html 鏂囦欢銆備负浜嗛伩鍏嶈繖绉嶆儏鍐碉紝浣犲簲璇ュ湪 Vue 搴旂敤閲岄潰瑕嗙洊鎵鏈夌殑璺敱鎯呭喌锛岀劧鍚庡啀缁欏嚭涓涓 404 椤甸潰銆
+
+const router = new VueRouter({
+ mode: 'history',
+ routes: [
+ { path: '*', component: NotFoundComponent }
+ ]
+})
+
+鎴栬咃紝濡傛灉浣犱娇鐢 Node.js 鏈嶅姟鍣紝浣犲彲浠ョ敤鏈嶅姟绔矾鐢卞尮閰嶅埌鏉ョ殑 URL锛屽苟鍦ㄦ病鏈夊尮閰嶅埌璺敱鐨勬椂鍊欒繑鍥 404锛屼互瀹炵幇鍥為
\ No newline at end of file
diff --git "a/\345\217\266\345\270\270\346\230\245/2021-6-22.md" "b/\345\217\266\345\270\270\346\230\245/2021-6-22.md"
new file mode 100644
index 0000000000000000000000000000000000000000..1d400a2f6ab62d1d26d1529b80e288df781bf1c6
--- /dev/null
+++ "b/\345\217\266\345\270\270\346\230\245/2021-6-22.md"
@@ -0,0 +1,37 @@
+# 浣跨敤VSCode(.NET Core CLI)鍒涘缓Web API 椤圭洰
+1. 鎵撳紑vscode 鍦ㄧ粓绔緭鍏ユ寚浠
+2. 鍒涘缓.NET Core 瑙e喅鏂规 杩欓噷涓句釜渚嬪瓙 浠ream涓轰緥瀛
++ dotnet new sln -o Dream
+3. 杩涘叆瑙e喅鏂规鐩綍锛屾煡鐪嬭В鍐虫柟妗堟槸鍚﹀垱寤烘垚鍔
++ cd Dream
++ ls
+4. 閫氳繃鍛戒护鍒涘缓WebAPI椤圭洰
++ dotnet new webapi --no-https -o Dream.WebApi
++ 瀹氫箟鐨凙PI椤圭洰鍚嶇О涓"Dream.WebApi"
++ --no-https"鍙傛暟琛ㄧず涓嶅惎鐢℉TTPS
++ "webapi"琛ㄧず鐨勫垱寤洪」鐩椂閫夋嫨鐨勬ā鏉跨被鍨
+5. 閫氳繃鍛戒护鍒涘缓涓や釜 .NET Core 绫诲簱椤圭洰
++ 瀹氫箟鐨勭被搴撳悕绉板垎鍒负Dream.Entity鍜孌ream.Service
++ 鍛戒护涓 "classlib" 琛ㄧず绫诲簱妯℃澘
++ dotnet new classlib -o Dream.Entity
++ dotnet new classlib -o Dream.Service
+6. 灏嗗垰鍒氬垱寤虹殑3涓」鐩坊鍔犺嚦瑙e喅鏂规鏂囦欢" Dream.sln "褰撲腑
++ dotnet sln Dream.sln add Dream.WebApi/Dream.WebApi.csproj Dream.Entity/Dream.Entity.csproj Dream.Service/Dream.Service.csproj
+7. 杩欐牱椤圭洰鍩烘湰鍒涘缓濂斤紝浣嗘槸鎴戜滑瀹為檯褰撲腑杩樻秹鍙婂埌椤圭洰涔嬮棿鐨勫紩鐢
++ 浣嗘槸"Dream.Service"椤圭洰闇瑕佸紩鐢"Dream.Entity"椤圭洰
++ dotnet add Dream.Service/Dream.Service.csproj reference Dream.Entity/Dream.Entity.csproj
++ "Dream.WebApi"椤圭洰闇瑕佸紩鐢"Dream.Entity"鍜" Dream.Entity "涓や釜椤圭洰锛
++ 椤圭洰涔嬮棿鐨勫紩鐢ㄦ搷浣滐紝鍛戒护褰撲腑" reference "鍙傛暟灏辨槸璧峰紩鐢ㄤ綔鐢
++ dotnet add Dream.WebApi/Dream.WebApi.csproj reference Dream.Service/Dream.Service.csproj Dream.Entity/Dream.Entity.csproj
+8. 寮曠敤 NuGet杞欢鍖呮坊鍔犺嚦鎴戜滑鐨勯」鐩綋涓
++ " package " 鍙傛暟灏辨槸寮曠敤 NuGet 鍖呯殑浣滅敤
++ dotnet add Dream.WebApi/Dream.WebApi.csproj package Newtonsoft.Json
+9. 杩愯涓涓嬫簮鐮侊紝璁块棶涓涓嬮粯璁ょ殑API 鎺ュ彛锛岀湅鐪嬫槸鍚︽垚鍔熻繍琛
++ 鍛戒护褰撲腑 "-p" 鏄寚瀹氳杩愯鐨勯」鐩紝浣犲彲浠ユ寚瀹氬叾瀹冭杩愯鐨勯」鐩
++ dotnet run -p Dream.WebApi/Dream.WebApi.csproj
+10. 璁块棶涓涓嬫ā鏉跨敓鎴愮殑榛樿鎺ュ彛鍦板潃
++ http://localhost:5000/WeatherForecast
++ 杩欎釜鏄繖涓」鐩嚜甯︾殑涓涓矾鐢
+
+# 杩欐牱閫氳繃.NET Core CLI 鑴氭墜鏋跺垱寤洪」鐩熀鏈垚鍔熶簡
+
diff --git "a/\345\217\266\345\270\270\346\230\245/2021-6-23.md" "b/\345\217\266\345\270\270\346\230\245/2021-6-23.md"
new file mode 100644
index 0000000000000000000000000000000000000000..a7f5048d5d879531168a56cd48140e85513c3641
--- /dev/null
+++ "b/\345\217\266\345\270\270\346\230\245/2021-6-23.md"
@@ -0,0 +1,23 @@
+## 鍒涘缓webAPI椤圭洰浠ュ強鐢熸垚瑙e喅鏂规锛宺estfull娴嬭瘯
+ 1. 鍒涘缓瑙e喅鏂规
+ ```
+ dotnet new sln
+ ```
+ 2. 鍒涘缓椤圭洰
+ ```
+ dotnet new webApi -n 鏂囦欢鍚.Api --no-https
+ ```
+ 3. 椤圭洰杩愯
+ ```
+ dotnet run -p 鏂囦欢鍚.Api
+ ```
+ 4. 涓嬭浇鏍煎紡鍖栧畨瑁呭寘
+ ```
+ shift+alt+F :prettier-code formatter
+ ```
+ 5. 灏嗛」鐩坊鍔犲埌瑙e喅鏂规
+ ```
+ dotnet sln add 椤圭洰
+ ```
+ 6. dotnet build
+ 7. dotnet run
diff --git "a/\345\217\266\345\270\270\346\230\245/2021-6-25.md" "b/\345\217\266\345\270\270\346\230\245/2021-6-25.md"
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git "a/\345\217\266\345\270\270\346\230\245/2021-6-26.md" "b/\345\217\266\345\270\270\346\230\245/2021-6-26.md"
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git "a/\345\217\266\345\270\270\346\230\245/2021-6-29.md" "b/\345\217\266\345\270\270\346\230\245/2021-6-29.md"
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git "a/\345\217\266\345\270\270\346\230\245/2021-6-8.md" "b/\345\217\266\345\270\270\346\230\245/2021-6-8.md"
new file mode 100644
index 0000000000000000000000000000000000000000..d7a396290b32fa64ac6ead251a92c403a25a20fd
--- /dev/null
+++ "b/\345\217\266\345\270\270\346\230\245/2021-6-8.md"
@@ -0,0 +1,93 @@
+# vuejs绗節娆¤銆婄粍浠跺熀纭銆 澶╂皵馃尋 杞︿繛
+## 鍩烘湰瀹炰緥
++ 缁勪欢鏄彲澶嶇敤鐨刅ue瀹炰緥 涓斿甫鏈変竴涓悕瀛 Vue.component('缁勪欢鍚',{灞炴)
++ 鍥犱负缁勪欢鏄竴涓彲澶嶇敤鐨刅ue瀹炰緥 鎵浠ヤ粬璺焠ew Vue鍙互鎺ユ敹涓鏍风殑閫夐」 姣斿data銆乧omputed銆亀atch銆乵ethods 浠ュ強鐢熷懡鍛ㄦ湡閽╁瓙绛 浣唀l鏄竴涓緥澶
+##
+
+
+
+ Vue.component('button-counter', {
+ data: function () {
+ return {
+ count: 0
+ }
+ },
+ template: ''
+ })
+ new Vue({
+ el: "#components-demo"
+ })
++ 閫氳繃new Vue鍒涘缓鐨刅ue鏍瑰疄渚嬶紝鎶婅繖涓粍浠朵綔涓鸿嚜瀹氫箟鍏冪礌鏉ヤ娇鐢
+## 缁勪欢鐨勫鐢
++ 鍙互灏嗙粍浠惰繘琛屼换鎰忔鏁扮殑澶嶇敤
++ 浣犳瘡鐢ㄤ竴娆$粍浠讹紝灏变細鏈変竴涓畠鐨勬柊瀹炰緥琚垱寤
++ 姣忎釜缁勪欢閮戒細鍚勮嚜鐙珛缁存姢瀹冪殑 count
+### data 蹇呴』鏄竴涓嚱鏁
++ 瀹氫箟缁勪欢鐨勬椂鍊欏彂鐜癲ata骞朵笉鏄儚data:{count:0} 杩欐牱鎻愪緵涓涓璞
++ 鑰屽繀椤绘槸涓涓嚱鏁板洜姝ゆ瘡涓疄渚嬪彲浠ョ淮鎶や竴浠借杩斿洖瀵硅薄鐨勭嫭绔嬬殑鎷疯礉
+####
+ data: function () {
+ return {
+ count: 0
+ }
+ }
+### 閫氳繃 Prop 鍚戝瓙缁勪欢浼犻掓暟鎹
++ Prop 鏄綘鍙互鍦ㄧ粍浠朵笂娉ㄥ唽鐨勪竴浜涜嚜瀹氫箟鐗规с傚綋涓涓间紶閫掔粰涓涓 prop 鐗规х殑鏃跺欙紝瀹冨氨鍙樻垚浜嗛偅涓粍浠跺疄渚嬬殑涓涓睘鎬
++ 涓涓粍浠堕粯璁ゅ彲浠ユ嫢鏈変换鎰忔暟閲忕殑 prop锛屼换浣曞奸兘鍙互浼犻掔粰浠讳綍 prop
+###
+ Vue.component('blog-post', {
+ props: ['title'],
+ template: '{{ title }}
'
+ })
++ 鍦ㄤ笂闈㈢殑妯℃澘涓紝浣犱細鍙戠幇鎴戜滑鑳藉鍦ㄧ粍浠跺疄渚嬩腑璁块棶杩欎釜鍊硷紝灏卞儚璁块棶 data 涓殑鍊间竴鏍枫
+###
+
+
+
+
+
+ Vue.component('blog-post', {
+ props: ['aa','bb'],
+ template: '{{ aa }} {{bb}}
'
+ })
+ new Vue({ el: '#app' })
++ 鐪嬩笂闈㈣鍦╬rop閲屽啓鍏b 鎵嶈兘灏哹b浣滀负閭d釜缁勪欢鐨勪竴涓睘鎬
+### 鍗曚釜鏍瑰厓绱
++ 濡傛灉鍦ㄧ粍浠舵ā鏉夸腑杩欐牱鍐
+###
+ {{ post.title }}
+ {{post.content}}
+### 閭d細鎶ラ敊
+
++ [Vue warn]:閿欒缂栬瘧妯℃澘:yue.js: 634缁勪欢妯℃澘搴旇鍙寘鍚竴涓牴鍏冪礌銆傚鏋滃湪澶氫釜鍏冪礌涓婁娇鐢╲-if锛屽垯浣跨敤v-else-if灏嗗畠浠摼璧锋潵銆
++ 鍥犱负姣忎釜缁勪欢蹇呴』鍙湁涓涓牴鍏冪礌
++ 鍙互灏嗘ā鏉跨殑鍐呭鍖呰9鍦ㄤ竴涓埗鍏冪礌鍐咃紝鏉ヤ慨澶嶈繖涓棶棰橈紝渚嬪锛氱敤涓涓猟iv鎶婅繖涓や釜鍖呰9璧锋潵
++ 缁勪欢鍙樺緱瓒婃潵瓒婂鏉傜殑鏃跺欎负姣忎釜鐩稿叧鐨勪俊鎭畾涔変竴涓 prop 浼氬彉寰楀緢楹荤儲 闇瑕侀噸鏋勪竴涓
+##
+
+ Vue.component('blog-post', {
+ props: ['post'],
+ template: `
+
+
{{ post.id }}
+ {{ post.title }}
+ {{ post.content}}
+
+ `
+ })
+ new Vue({
+ el: '#app',
+ data: {
+ posts: [
+ { id: 1, title: 'My journey with Vue', content: '灏忓皬闄' },
+ { id: 2, title: 'Blogging with Vue' },
+ { id: 3, title: 'Why Vue is so fun' }
+ ]
+ }
+ })
++ 涓 post 瀵硅薄娣诲姞涓涓柊鐨 property锛屽畠閮戒細鑷姩鍦板湪` ` 鍐呭彲鐢
+
+# 姣忔棩涓瑷锛氬緢鍠滄澶у摜璇寸殑涓鍙ヨ瘽銆婅繖绮藉瓙閲岄潰涓轰粈涔堜笉鍖呴矋楸煎拰澶ц櫨銆
\ No newline at end of file
diff --git "a/\345\217\266\345\270\270\346\230\245/2021-6-9.md" "b/\345\217\266\345\270\270\346\230\245/2021-6-9.md"
new file mode 100644
index 0000000000000000000000000000000000000000..c347501ac393d0f6a826e84353190c076cf9b214
--- /dev/null
+++ "b/\345\217\266\345\270\270\346\230\245/2021-6-9.md"
@@ -0,0 +1,2 @@
+# vuejs绗崄娆¤ 澶╂皵鈽 妗戞嬁鏈嶅姟瀹夋帓涓婁簡
+## 鎻掓Ы
\ No newline at end of file
diff --git "a/\345\217\266\345\270\270\346\230\245/2021-6.30.md" "b/\345\217\266\345\270\270\346\230\245/2021-6.30.md"
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git "a/\345\217\266\345\270\270\346\230\245/2021-7.2.md" "b/\345\217\266\345\270\270\346\230\245/2021-7.2.md"
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git "a/\345\217\266\345\270\270\346\230\245/2021-7.3.md" "b/\345\217\266\345\270\270\346\230\245/2021-7.3.md"
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391