File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ export default {
129129 }
130130 },
131131 created () {
132- console .log (' \n ' +
132+ console .info (' \n ' +
133133 ' ┌─┐┬─┐┌─┐ ┬┌─┐┌─┐┌┬┐ ┌─┐┌─┐┌─┐┌─┐┌─┐┬ \n ' +
134134 ' ├─┘├┬┘│ │ │├┤ │ │ ├─┘├─┤└─┐│ ├─┤│ \n ' +
135135 ' ┴ ┴└─└─┘└┘└─┘└─┘ ┴o ┴ ┴ ┴└─┘└─┘┴ ┴┴─┘ \n ' +
Original file line number Diff line number Diff line change 1414 <v-stepper-items class =" elevation-0" >
1515 <v-stepper-content step =" 1" class =" pt-0" >
1616 <v-layout column wrap >
17- <v-flex v-for =" searchbar in searchbars" :key =" searchbar.id" class =" my-2 " >
17+ <v-flex v-for =" searchbar in searchbars" :key =" searchbar.id" class =" my-1 " >
1818 <v-layout column wrap >
1919 <v-flex >
2020 <v-layout row >
@@ -108,7 +108,7 @@ export default {
108108 searchbars: [
109109 {
110110 id: 1 ,
111- classification: " " ,
111+ classification: " 전체 " ,
112112 keywords: " "
113113 }
114114 ],
@@ -191,13 +191,13 @@ export default {
191191 addForm () {
192192 this .searchbars .push ({
193193 id: ++ this .searchbarId ,
194- classificationEdited : - 1 ,
194+ classification : " 전체 " ,
195195 keywords: " "
196196 });
197197 },
198198 deleteForm (searchbarId ) {
199199 const deletedIndex = this .searchbars .findIndex (
200- searchbar => searchbar[" id" ] == searchbarId
200+ searchbar => searchbar[" id" ] === searchbarId
201201 );
202202 this .searchbars .splice (deletedIndex, 1 );
203203 }
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export default {
6565 return {
6666 rowsPerPageItems: [10 , 25 , 100 ],
6767 searchbar: {
68- classification: - 1 ,
68+ classification: " 전체 " ,
6969 keywords: " "
7070 },
7171 searching: false ,
You can’t perform that action at this time.
0 commit comments