docs_vue2/one/docs/demo/search-box/style.vue

23 lines
308 B
Vue
Raw Normal View History

2020-08-13 11:47:56 +08:00
<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>