码迷,mamicode.com
首页 > 其他好文 > 详细

Vue 字符串反转

时间:2019-12-27 11:40:25      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:col   反转   信息   点击事件   字符串   fun   eth   reverse   back   

<div id="app">
            <p>{{hello}}</p>
            <button @click="click">反转信息</button>
        </div>

<p>标签内写内容(反转内容);

<button>按钮,写一个点击事件

<script>
            new Vue({
                el:"#app",
                data:{
                    hello:我不怕你不怕我
                },
                methods:{
                    click:function(){
                        this.hello=this.hello.split(‘‘).reverse().join(‘‘)  //将字符进行反转;
                    }
                }
            })
        </script>

Vue 字符串反转

标签:col   反转   信息   点击事件   字符串   fun   eth   reverse   back   

原文地址:https://www.cnblogs.com/a973692898/p/12106087.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!