@douganderson444/listavelte
Advanced tools
The ultimate Task List?
Weekly downloads
Readme
The ultimate Task List?
If you're seeing this, you've probably already done this step. Congrats!
# install the component
npm install github:douganderson444/listavelte
NPM:
# install the component from npm
npm install @douganderson444/listavelte
See src/routes/index.svelte for Demo usage:
<script>
import { TaskList } from '@douganderson444/listavelte';
let uid = 1;
let todos = [
{ id: uid++, done: false, high: true, description: 'install the component' },
{ id: uid++, done: false, high: false, description: 'pass in some todos' },
];
</script>
<TaskList {todos} />
Issues, pull requests, and forks are welcome