WIP Добавлена возможность редактирования данных клиента таблицы

This commit is contained in:
DwCay
2022-10-26 16:11:56 +03:00
parent a9ae13b943
commit a2715a712f
21 changed files with 515 additions and 387 deletions

View File

@@ -0,0 +1,27 @@
<template lang="pug">
.flex(class="gap-x-1.5")
base-select(:for-networks="true" :style-border="true" :list-data="listAddingNetworks" :option-data="value.kind")
base-input.input-info.w-full(v-model:value="value.username" :id="value.id" placeholder="Ссылкa")
</template>
<script>
import BaseSelect from "@/components/base/BaseSelect";
import BaseInput from "@/components/base/BaseInput";
export default {
name: "TableAddingNetwork",
components: { BaseInput, BaseSelect },
props: {
value: Object,
listAddingNetworks: Array,
},
};
</script>
<style lang="sass" scoped>
.icon
color: var(--font-dark-blue-color)
width: 48px
height: 42px
border: 2px solid var(--border-light-grey-color)
border-radius: 4px
</style>