vue2和vue3在html中引用组件component方式不一样
我的vue版本是:20.17.0
一、在HTML中,引用组件格式区别。
vue2引用组件可以是file.vue格式,需要导入:<script src="https://unpkg.com/http-vue-loader"></script>才可以识别vue格式。
vue3引用组件格式是:file.js。
二:vue2引用列子
1、html代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>vue2引用组件例子</title>
<script type="text/javascript" src="./vue2框架包/vue.js" ></script>
<script type="text/javascript" src="./vue2框架包/http_vue_loader.js" ></script>
</head>
<body>
<div id="app">
<h1>Hello Vue</h1>
<h1>{
{msg}}</h1>
<testvue/>
</div>
<script>
var v=n