<!doctype html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>vue的基本代码</title>
	<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
	<!-- V -->
	<div >
        <p>33333</p>
        <login></login>
	</div>
</body>
<script>

    var login={
        template:'<h1>这是登录组件</h1>'
    }
	var vm=new Vue({  //VM
		el:'#app',
		data:{
			msg:'欢迎学习vue!'  //M
        },
        methods:{},
        components:{
            login
        }
	})
</script>

</html>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-07
  • 2021-08-28
  • 2021-06-10
  • 2021-05-31
  • 2022-12-23
猜你喜欢
  • 2021-06-22
  • 2021-08-10
  • 2021-05-21
  • 2022-01-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案