vue-lite-crud
v0.0.8
Published
Vue crud component
Downloads
9
Maintainers
Readme
Vue crud component
Project setup
npm i vue-lite-crud
Usage
Props
name|description|type|required ---|---|---|--- main|Main account info|Object(id,title,img)|true sub|Sub accounts info|Array[Object(id,title,img)...]|true show-sub|Sub accounts show/hide|Boolean|false
Emit
name|description|return type ---|---|--- deleteMain| Delete main account|Number(main id) deleteSub| Sub accounts info|Object(Number(main id),Number(sub id)) refresh| You can use it if you want to manually pull up-to-date data. | Only return emit add| If you want to add to the list, it adds a "+" button and emits when clicked. | Only return emit
Usage with Nuxt
<template>
<client-only>
<Crud
:main="main"
:sub="sub"
@deleteSub="deleteSub"
@deleteMain="deleteMain"
@refresh="refresh"
@add="add"
/>
</client-only>
</template>
<script>
export default {
components: {
Crud: () => import("vue-lite-crud"),
},
data() {
return {
main: {
id: 1,
title: "Main Account",
img: "https://thispersondoesnotexist.com/image",
},
sub: [
{
id: 1,
img: "https://thispersondoesnotexist.com/image",
title: "test 1",
},
{
id: 2,
img: "https://thispersondoesnotexist.com/image",
title: "test 2",
},
],
};
},
methods: {
deleteSub(Ids) {
console.log(Ids);
//{main: 1, sub: 1} ->id
},
deleteMain(id) {
console.log("deleteMain:", id);
},
refresh(id) {
console.log("refresh id:", id);
},
add(id) {
console.log("add id:", id);
},
},
};
</script>