Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-CloudComputing
/
D_Team_Khuloud
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
박기범
2020-06-11 00:44:09 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
379080c347c4595bf909ccd9890ee44fbb5272e7
379080c3
1 parent
362ed588
complete
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
front-end/src/components/make_contact.vue
front-end/src/components/make_contact.vue
View file @
379080c
<template lang="html">
<v-flex>
<h1>연락처</h1>
<v-text-field
v-model="search"
append-icon="mdi-magnify"
label="Search"
single-line
hide-details
></v-text-field>
<!--
<v-simple-table>
<template v-slot:default>
<thead>
...
...
@@ -19,6 +27,13 @@
</tbody>
</template>
</v-simple-table>
-->
<v-data-table
:headers="headers"
:items="contact_list"
:search="search"
>
</v-data-table>
<v-divider></v-divider>
<div v-cloak @drop.prevnet="addContact" @dragover.prevent>
<input
...
...
@@ -41,6 +56,17 @@
export default {
data() {
return {
search:'',
headers:[
{
text: 'Name',
align: 'start',
sortable: false,
value: 'name'
},
{text: 'phone', value:'email'},
{text:'email', value:'phone'}
],
contact_list : [],
contact_file : null
}
...
...
Please
register
or
login
to post a comment