1. 程式人生 > 實用技巧 >vue.js的入門

vue.js的入門

我們組現在因為開發新業務,所以現在轉到前端去了,目前是帶薪學習vue.js中....

入門測試示例是一個簡單的使用vue.js庫

該系列所有程式碼都是參照B上彬果鍋的 vue.js 從入門到應用 的視訊,可以去圍觀他

新程式碼都放到GitHub上了,

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title> <script src="lib/vue-2.5.9.js"></script> </head> <body> <div id = "app"> <p> {{msg ? 'this is ok' : 'this is no'}} </p> <hr> <h3 v-text="msg"></h3> </div> <
script> const vm = new Vue({ el:'#app', data:{ msg:"this is a data used by vue drawing, we does not to operate DOM's element", msg2:false } }) </script> </body> </html>