BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
688f53ec
Commit
688f53ec
authored
May 07, 2018
by
Dennis Tang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use v-model for dropdown search input
parent
86413c95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
dropdown_search_input.vue
.../vue_shared/components/dropdown/dropdown_search_input.vue
+10
-8
No files found.
app/assets/javascripts/vue_shared/components/dropdown/dropdown_search_input.vue
View file @
688f53ec
...
...
@@ -3,29 +3,31 @@ import { __ } from '~/locale';
export
default
{
props
:
{
searchQuery
:
{
type
:
String
,
required
:
false
,
default
:
''
,
},
placeholderText
:
{
type
:
String
,
required
:
true
,
default
:
__
(
'Search'
),
},
},
data
()
{
return
{
searchQuery
:
this
.
value
};
},
watch
:
{
searchQuery
(
query
)
{
this
.
$emit
(
'input'
,
query
);
},
},
};
</
script
>
<
template
>
<div
class=
"dropdown-input"
>
<input
autocomplete=
"off"
class=
"dropdown-input-field"
type=
"search"
v-model=
"searchQuery"
:placeholder=
"placeholderText"
:searchQuery=
"searchQuery"
@
input=
"$emit('input', $event.target.value)"
autocomplete=
"off"
/>
<i
aria-hidden=
"true"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment