mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-30 14:32:46 +08:00
21 lines
525 B
Markdown
21 lines
525 B
Markdown
```html
|
|
<template>
|
|
<Wb-input :value.sync="text5" placeholder="请输入网址">
|
|
<span slot="prepend">http://</span>
|
|
<span slot="append">.com</span>
|
|
</Wb-input>
|
|
<Wb-input :value.sync="text5" placeholder="日活">
|
|
<span slot="prepend">http://</span>
|
|
<span slot="append"><Icon type="search"></Icon></span>
|
|
</Wb-input>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data: function () {
|
|
return {
|
|
text5: "",
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
``` |