A to-do list is a perfect exercise to practice with Vue.js
Try it out, just open the terminal and type "todo"
- Save and restore list using local storage
- Mark items as done
- Move to your client folder, then
# Install this module with Npm npm install https://github.com/hacklover/owd-app-todo # Or using Yarn yarn add https://github.com/hacklover/owd-app-todo
- Define this module in
owd-client/client.extensions.ts
import AboutModule from "@owd-client/core/src/modules/app/about"; import DebugModule from "@owd-client/core/src/modules/app/debug"; import TodoModule from "owd-app-todo/client"; export default { app: { modules: [ AboutModule, DebugModule, TodoModule, ] }, ...
- Copy the content of the client/config folder into
owd-client/config
- Open Web Desktop client v2.0.0-beta.1
This project is released under the MIT License