angularJS01

来源:互联网 发布:淘宝达人怎样申请大v 编辑:程序博客网 时间:2024/05/01 05:02
<!DOCTYPE html>
<html>


<head>
<meta charset="utf-8" />
<title></title>


<script>
import {
Component
} from '@angular/core';


@Component({
selector: 'my-app',
template: `<h1>Hello {{name}}</h1>`
})
export class AppComponent {
name = 'Angular';
}
</script>
</head>


<body>
<my-app>Loading AppComponent content here ...</my-app>
</body>


</html>
0 0