vue 标签输入框插件 buefy.min.js

vue 标签输入框插件 buefy.min.js

vue 标签输入框插件 buefy.min.js

第一步引入bfwone,加载依赖项vue

第二步执行插件代码

示例如下

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>BFW NEW PAGE</title>
    <script id="bfwone" data="dep=vue&err=0" type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/bfwone.js"></script>
    <script type="text/javascript">
        bready(function() {
            use(["buefy.min", "buefy.min"], function() {
                var vue = new Vue({
                    el: '#el',
                    data: {
                        tags: [
                            'PHP',
                            'JAVA',
                            'NET']
                    }
                });
            });
        });
    </script>
    <style>
        #el {
            margin: 40px;
        }
        .autocomplete {
            display: block;
            clear: both;
            width: 100%
        }

        .control.has-icons-left .input {
            padding: 0
        }
    </style>
</head>
<body>
    <section id="el">
        <b-field label="请选择语言">
            <b-taginput v-model="tags" type="is-success" ellipsis icon="label" allow-new=1 placeholder="输入标签">
            </b-taginput>
        </b-field>
    </section>


</body>
</html>


立即下载buefy.min.js查看所有js插件

网友评论0

程序员在线工具箱