|
| 1 | +Project का नाम और उद्देश्य=> This is simple "todo" app for beginner learning purpose. main ojective is that you insert any text related to simple work such that anyone name you write or any message you write or pets names you write .this type of work you can do. |
| 2 | +.............................................................................. |
| 3 | + |
| 4 | +ScreenShot=> |
| 5 | + |
| 6 | + |
1 | 7 |  |
2 | 8 |
|
| 9 | +.............................................................................................. |
| 10 | + |
| 11 | +Project Structure=> |
3 | 12 | │──src/ |
4 | 13 | │ ├── components/ |
5 | 14 | │ │ ├── TodoForm.vue |
|
9 | 18 | │ ├── main.jss |
10 | 19 | │── package.json |
11 | 20 |
|
| 21 | +.................................................................................................. |
| 22 | + |
| 23 | +Features=> |
12 | 24 | 1-TodoForm.vue → नया टास्क जोड़न क लए |
13 | 25 | 2 TodoItem.vue → एक-एक टास्क को दखान और actions (complete/delete) करन क लए |
14 | 26 | 3 TodoList.vue → सार टास्क को लस्ट क रूप म दखान क लए |
@@ -52,3 +64,45 @@ newTodo data goto app.vue(todos.value.push({ text: todoText.trim(), completed: f |
52 | 64 | ✅ |
53 | 65 | TodoList स event आन पर toggle या delete करता ह। |
54 | 66 | ✅ |
| 67 | + |
| 68 | +.............................................................................................................................. |
| 69 | + |
| 70 | +कैसे चलाएं (install/run |
| 71 | + |
| 72 | +0- make folder (todoApp) on desktop and select path of (todoApp) folder such that like this (\Users\Rajkumar\Desktop\todoApp). |
| 73 | + |
| 74 | +1-opend cmd-command and type (cd ..) then enter like this you continue (cd ..) when till you will not found c:\ and in last you cmd-command look c:/ |
| 75 | + |
| 76 | +2-you cmd-command look like this: |
| 77 | + c:/ |
| 78 | + and paste this path(\Users\Rajkumar\Desktop\todoApp) then you see of cmd look like this: |
| 79 | + c:\Users\Rajkumar\Desktop\todoApp |
| 80 | +3- Create Project using vue.js |
| 81 | + you type(npm create vue@latest) into cmd like this: |
| 82 | + C:\Users\Rajkumar\Desktop\todoApp>npm create vue@latest |
| 83 | + |
| 84 | + (npm create vue@latest क्या करता है ये command? |
| 85 | + यह command Vue.js का latest starter setup बनाता है, यानी: |
| 86 | + Vite के साथ Vue project |
| 87 | + Project name, TypeScript, Router, Pinia आदि setup options) |
| 88 | + |
| 89 | +4-फिर यह पूछेगा: |
| 90 | + |
| 91 | +✔ Project name: … todo |
| 92 | +✔ Add TypeScript? … No |
| 93 | +✔ Add Vue Router for Single Page Application development? … Yes |
| 94 | +✔ Add Pinia for state management? … Yes |
| 95 | +✔ Add Vitest for Unit Testing? … No |
| 96 | +✔ Add Cypress for Testing? … No |
| 97 | +✔ Add ESLint for code quality? … Yes |
| 98 | + |
| 99 | + |
| 100 | +5-इसके बाद ये command चलाएं: |
| 101 | +cd todo |
| 102 | +npm install |
| 103 | +npm run dev |
| 104 | + |
| 105 | +6-open browser and type (http://localhost:5173/) into browser address bar |
| 106 | +............................................................................................................................. |
| 107 | + |
| 108 | +Tech Stack=> (HTML, css bootstrap5, vue.js composition-api) |
0 commit comments