Skip to content
Snippets Groups Projects
Commit 252d92e1 authored by shabai517's avatar shabai517
Browse files

add search panel

parent e6d96239
No related branches found
No related tags found
No related merge requests found
<template>
<div class="search-container">
<Input v-model="keyword" class="search-input">
<Select v-model="selected" slot="prepend" style="width: 80px">
<Option value="archive">Archive</Option>
<Option value="cluster">Cluster</Option>
</Select>
<Button slot="append" icon="ios-search"></Button>
</Input>
</div>
</template>
<script>
export default {
data () {
return {
keyword:'',
selected: 'archive',
value12: '',
value13: '',
select1: 'http',
select2: 'com',
select3: 'day'
}
}
}
</script>
<style scoped>
.search-container{
width:100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: #F0F0F0;
}
.search-input{
width:500px;
}
</style>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment