2020-08-27 17:18:57 +08:00

525 B

<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>