aboutsummaryrefslogtreecommitdiff
path: root/src/App.html
blob: d1a4dc5d46a1751459f71213974e3e4577a0b88b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<label>Hello {{name}}!</label>
Template : <Test1></Test1>
Template : <Test2></Test2>
<style>
	h1 {
		color: purple;
	}
</style>

<script>
	import Test1 from './components/Test1/Test1.html';
	import Test2 from './components/Test2/Test2.html';
	export default {
		components :{Test1, Test2}
	}
</script>