23 lines
303 B
Vue
23 lines
303 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>
|
|
.veui-search-box {
|
|
margin-right: 1em;
|
|
}
|
|
</style>
|