字符串反转-vue

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串反转-vue相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html xmlns:v-on="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8">
<title>Vue测试实例 - 菜鸟教程(runoob.com)</title>
<script src="../js/vue.min.js"></script>
</head>
<body>
<div id="app">
<button v-on:click="m">字符串反转</button>
<p>{{message}}</p>

</div>
<script>
new Vue({
el:‘#app‘,
data:{
message:"abc"
},
methods:{
m: function () {
this.message = this.message.split(‘‘).reverse().join(‘‘)
}
}
})
</script>

</body>
</html>

以上是关于字符串反转-vue的主要内容,如果未能解决你的问题,请参考以下文章

Vue3实现字符串反转和内容隐藏

VueJS字符串反转:String.reverse()

Vue.js 计算属性

实现对字符串的反转输出与句子的反转输出

字符串反转的进一步应用----单词反转

python文本 字符串逐字符反转以及逐单词反转