diff --git "a/\351\273\204\347\216\211\346\235\255/20240513-pinia.md" "b/\351\273\204\347\216\211\346\235\255/20240513-pinia.md"
new file mode 100644
index 0000000000000000000000000000000000000000..cb4becc3f1212b1ddf98d3ee1bdaf5c2b9f74b64
--- /dev/null
+++ "b/\351\273\204\347\216\211\346\235\255/20240513-pinia.md"
@@ -0,0 +1,76 @@
+Pinia是一个基于Vue 3的状态管理库,它提供了一种简单、直观的方式来管理应用程序的状态。Pinia的设计受到了Vuex的启发,但它更加轻量、易于使用,并且与Vue 3的响应式系统紧密集成。
+
+使用Pinia,您可以定义和管理应用程序的状态,并在组件中轻松地访问和更新这些状态。
+1. 安装Pinia:
+
+```bash
+npm install pinia
+```
+
+2. 创建和配置Pinia实例:
+
+```javascript
+// main.js
+
+import { createApp } from 'vue'
+import { createPinia } from 'pinia'
+import App from './App.vue'
+
+const app = createApp(App)
+const pinia = createPinia()
+
+app.use(pinia)
+app.mount('#app')
+```
+
+3. 定义状态和操作:
+
+```javascript
+// store.js
+
+import { defineStore } from 'pinia'
+
+export const useCounterStore = defineStore('counter', {
+ state: () => ({
+ count: 0
+ }),
+ actions: {
+ increment() {
+ this.count++
+ },
+ decrement() {
+ this.count--
+ }
+ }
+})
+```
+
+4. 在组件中使用状态和操作:
+
+```vue
+
+
+
Count: {{ count }}
+
+
+
+
+
+
+```
+
diff --git "a/\351\273\204\347\216\211\346\235\255/20240516\350\267\257\347\224\261.md" "b/\351\273\204\347\216\211\346\235\255/20240516\350\267\257\347\224\261.md"
new file mode 100644
index 0000000000000000000000000000000000000000..4c80b42be68b0f804a8eab96cec3c106e0142474
--- /dev/null
+++ "b/\351\273\204\347\216\211\346\235\255/20240516\350\267\257\347\224\261.md"
@@ -0,0 +1,73 @@
+路由是指确定应用程序中不同页面之间导航的机制。在Web开发中,路由通常用于根据URL的路径来加载不同的页面或组件。
+
+1. 安装Vue Router:
+
+```bash
+npm install vue-router
+```
+
+2. 创建和配置Vue Router实例:
+
+```javascript
+// main.js
+
+import { createApp } from 'vue'
+import { createRouter, createWebHistory } from 'vue-router'
+import App from './App.vue'
+import Home from './components/Home.vue'
+import About from './components/About.vue'
+
+const router = createRouter({
+ history: createWebHistory(),
+ routes: [
+ { path: '/', component: Home },
+ { path: '/about', component: About }
+ ]
+})
+
+const app = createApp(App)
+app.use(router)
+app.mount('#app')
+```
+
+
+1. 创建路由组件:
+
+```vue
+
+
+
+
+
Home Page
+
+
+
+
+
+
+
+
+
About Page
+
+
+
+```
+
+
+
+1. 在模板中使用路由:
+
+```vue
+
+
+
+
+
+
+
+
+```
+