bc74019dac
1. move SearchBox.vue to local 2. general adaptation work
46 lines
832 B
Vue
46 lines
832 B
Vue
<script>
|
|
export default {
|
|
functional: true,
|
|
props: {
|
|
type: {
|
|
type: String,
|
|
default: 'tip'
|
|
},
|
|
text: String,
|
|
vertical: {
|
|
type: String,
|
|
default: 'top'
|
|
}
|
|
},
|
|
render (h, { props, slots }) {
|
|
return h('span', {
|
|
class: ['badge', props.type],
|
|
style: {
|
|
verticalAlign: props.vertical
|
|
}
|
|
}, props.text || slots().default)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
@require '../styles/mode.styl'
|
|
.badge
|
|
display inline-block
|
|
font-size 14px
|
|
height 18px
|
|
line-height 18px
|
|
border-radius $borderRadius
|
|
padding 0 6px
|
|
color white
|
|
background-color #42b983
|
|
&.tip, &.green
|
|
background-color #42b983
|
|
&.error
|
|
background-color #DA5961
|
|
&.warning, &.warn, &.yellow
|
|
background-color darken(#ffe564, 35%)
|
|
& + &
|
|
margin-left 5px
|
|
</style>
|