23 lines
308 B
Vue
23 lines
308 B
Vue
|
<template>
|
||
|
<article>
|
||
|
<veui-search-box/>
|
||
|
<veui-search-box ui="strong"/>
|
||
|
</article>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { SearchBox } from 'veui'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
'veui-search-box': SearchBox
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="less" scoped docs>
|
||
|
.veui-search-box {
|
||
|
margin-right: 1em;
|
||
|
}
|
||
|
</style>
|