Vue
安装开发者工具
拉到谷歌浏览器
设置
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>初识Vue</title>
<!--引入Vue-->
<script type="text/javascript" src="../js/vue.js"></script>
</head>
<body>
<!--设置不提示-->
<script type="text/javascript" >
Vue.config.productionTip = false;
</script>
</body>
</html>