<!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">
<title>Document</title>
</head>
<body>
<main id="app">
<app-header v-bind:tit="title"></app-header>
</main>
<script src="vue.js"></script>
<script>
Vue.component('app-header', {
template: `<header>{{ tit }}</header>`,
props: ['tit']
});
var vm = new Vue({
el: '#app',
data: {
title: '登陆'
}
});
</script>
</body>
</html>
网友评论