A starter project for building a responsive ToDo list app using Vue 3, TypeScript, Tailwind CSS, and Pinia. The core setup is done, so you can focus on development and showcasing your skills.
Follow these instructions to get a copy of the project up and running on your local machine for development and testing purposes (You can also fork it and use Codespaces).
Make sure you have the following installed on your machine:
- Node.js (v16 or later, preferably the latest version)
- npm (v6 or later, preferably the latest version) or yarn
-
Clone the repository to your local machine:
git clone <repository-url>
-
Navigate into the project directory:
cd <project-folder>
-
Install dependencies:
npm install
-
Run the development server:
npm run dev
- Create and implement a ToDo list that allows users to:
- Add new tasks
- Remove tasks
- Mark tasks as completed
- Ensure the application is responsive and works well on both desktop and mobile.
- Style the application using Tailwind CSS.
- Use TypeScript to define types for the tasks (e.g., Todo interface) and ensure type-safety in functions.
- Manage state using Pinia for storing and updating ToDo items.
Happy coding!