olib-todo-test
v0.1.0
Published
Ref code todo [Todo example vue 3](https://vuejs.org/examples/#todomvc)
Downloads
4
Readme
This is test lib using vue 3
Ref code todo Todo example vue 3
How to use
<script setup>
import { TodoJs, Todo } from 'brian-component-lib';
import 'brian-component-lib/style.css';
</script>
<template>
<div>
<h1>Todo js</h1>
<TodoJs />
<h1>Todo ts</h1>
<Todo />
</div>
</template>