changes
This commit is contained in:
parent
6f51e5588f
commit
942eebf66b
|
@ -0,0 +1,28 @@
|
|||
<!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>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">
|
||||
<cpn></cpn>
|
||||
</div>
|
||||
</body>
|
||||
<script src="../../JavaScript/vue.min.js"></script>
|
||||
<script>
|
||||
Vue.component(
|
||||
'cpn', {
|
||||
template: `
|
||||
<h1>你好</h1>
|
||||
`
|
||||
}
|
||||
)
|
||||
const vue=new Vue({
|
||||
el:"#app"
|
||||
})
|
||||
|
||||
</script>
|
||||
</html>
|
Loading…
Reference in New Issue