todo-lit
v0.1.8
Published
A simple task manager component built with LitElement.
Downloads
2
Maintainers
Readme
Task Manager
Task Manager is a simple web component built with LitElement that allows users to manage their tasks effectively.
Features
- Add tasks: Easily add new tasks to your list.
- Delete tasks: Remove tasks that are no longer needed.
- Mark tasks as done: Keep track of completed tasks by marking them as done.
- Persistence: Your tasks are saved locally, so they persist even after refreshing the page.
- Responsive design: The Task Manager is designed to work seamlessly across various devices and screen sizes.
Installation
To use the Task Manager component in your project, you can install it via npm:
npm install todo-lit
Then, import it into your project:
import 'todo-lit';
Usage
Once imported, you can use the <todo-lit>
element in your HTML: <todo-lit></todo-lit>
Getting Started
To get started with Task Manager, follow these steps:
1.Install the component in your project as described above.
2.Use the "<todo-lit></todo-lit>
" element in your HTML to display the task manager interface.
3.Add tasks by typing them into the input field and clicking the Add button.
4.Delete tasks by clicking the Delete button next to the task you want to remove.
5.Mark tasks as done by clicking the Done button next to the task you have completed.
6.Your tasks will be saved locally, so they will still be available even after refreshing the page.