blob: b4284f1e29142ee6371da6a6bbe4c59efd078989 (
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>
label {
color: purple;
}
</style>
<script>
import Test1 from './components/Test1/Test1.html';
import Test2 from './components/Test2/Test2.html';
export default {
components :{Test1, Test2}
}
</script>
|