vue
Posted infaaf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue相关的知识,希望对你有一定的参考价值。
vue与jquery比较
vue
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Vue </title> <script src="https://cdn.bootcss.com/vue/2.2.2/vue.min.js"></script> </head> <body> <div id="app"> <p>{{ message }}</p> <button v-on:click="clickfunc">点击</button> </div> <script> new Vue({ el:‘#app‘, data:{ message:‘before‘ }, methods:{ clickfunc:function () { this.message=‘after‘ } } }) </script> </body> </html>
jquery
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="app"> <p id="pp">before</p> <button id="bt">点击</button> </div> <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.js"></script> <script> $(‘#bt‘).click(function () { $(‘#pp‘).text(‘after‘); }) </script> </body> </html>
以上是关于vue的主要内容,如果未能解决你的问题,请参考以下文章