Blogger Information
Blog 35
fans 0
comment 1
visits 42593
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
vue调用方法函数
魏先生的博客
Original
2902 people have browsed it

methods{ /*******里面写代码******/ }  //用这个方法才可以使用  切记.

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script>
    </head>
    <body>
        <div id="demo">
            <ul>
                <li>年龄:{{age}}</li>
                <li>体重:{{weight}}</li>
                <li>身高:{{height}}</li>
                <li>{{detail()}}</li>
            </ul>
        </div>
        <script type="text/javascript">
            new Vue({
                el:'#demo',
                data:{
                    age:'30岁',
                    weight:'80Kg',
                    height:'175cm',
                },
                methods:{
                    detail:function(){
                        return this.height+'已经很不错了 加油';
                        
                    }
                }
                
            })
        </script>
    </body>
</html>

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post