vuejs3

Posted

tags:

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

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<title></title>

</head>

<body>

<div id="app">

<p>{{message}}</p>

<input type="text" v-model="message">

</div>

<script src="http://static.runoob.com/assets/vue/1.0.11/vue.min.js"></script>

<script>

var exampleData = {

message:‘Hello World!‘

}

new Vue({

el:"#app",

data:exampleData

});

</script>

</body>

</html>


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1895495

以上是关于vuejs3的主要内容,如果未能解决你的问题,请参考以下文章