Vue 字符串反轉

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

<p>標籤內寫內容(反轉內容);app

<button>按鈕,寫一個點擊事件this

<script>
            new Vue({ el:"#app", data:{ hello:'我不怕你不怕我' }, methods:{ click:function(){ this.hello=this.hello.split('').reverse().join('') //將字符進行反轉; } } }) </script>
相關文章
相關標籤/搜索