Vuejs 的局部组件

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

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

<script src="https://unpkg.com/vue/dist/vue.js"></script>

<title>Document</title>

</head>

<body>

<div id = "myApp">

<today-weather></today-weather>

</div>

<script>

Vue.component('today-weather',{

template:'<div>今天下雨,出不去呐,在家看youtube吧!</div>'

});

var myApp = new Vue({

el:"#myApp",

});

</script>

</body>

</html>

猜你喜欢

转载自blog.csdn.net/xlh006/article/details/83628390
今日推荐