Skip to content

owdproject/owd-app-todo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

To-do module for OWD Client

A to-do list is a perfect exercise to practice with Vue.js

OWD Todo module demo

Become a Patron Join us on Discord

Demo

Try it out, just open the terminal and type "todo"

Features

  • Save and restore list using local storage
  • Mark items as done

Quick install

  • 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

Compatibility

  • Open Web Desktop client v2.0.0-beta.1

License

This project is released under the MIT License