1<template>
2 <div>
3 <text class="hello">Hello {{name}}</text>
4 </div>
5</template>
6
7
8<style>
9.hello {
10 font-size: 26px;
11 color: red;
12}
13</style>
14
15
16<script>
17export function data() {
18 return {
19 name: 'Weex'
20 }
21}
22</script>