美文网首页
2018-09-18

2018-09-18

作者: liangzhen梁振 | 来源:发表于2018-09-18 08:00 被阅读0次

    <!DOCTYPE html>

    <html lang="en">

    <head>

        <meta charset="UTF-8">

        <title>Document</title>

    </head>

    <body>

    <div id='itany'>

    <!--    <p>{{msg.split(' ').reverse().join('===')}}</p>-->

        <h1>{{msg}}</h1>

        <a href="#">{{revMsg}}</a>

    </div>

    <script src='js/vue.js'></script> 

    <script>

      new Vue({

          el:'#itany',

          data:{

              msg:'hello vue'//vue===hello

          },

          computed:{

              revMsg:function(){

                  return this.msg.split(' ').reverse().join('===')

              }

          }

      })   

    </script>

    </body>

    </html>

    相关文章

      网友评论

          本文标题:2018-09-18

          本文链接:https://www.haomeiwen.com/subject/fqnenftx.html