UNPKG

366 BHTMLView Raw
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>Title</title>
6</head>
7<body>
8<div id="app"></div>
9
10
11
12<script src="../dist/fb-core.js?a"></script>
13<script>
14
15 var app = FireBird.create("PageApp", {
16 el: "#app",
17 template: '<div>hello, {{name}}</div>',
18 data: function () {
19 return {
20 name: "lc"
21 };
22 }
23 })
24
25</script>
26
27</body>
28</html>
\No newline at end of file