• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<element name="name">
2    <template>
3        <div><text class="name">{{name}}</text></div>
4    </template>
5
6    <style>
7    .name {
8        font-size: 26px;
9        color: red;
10    }
11    </style>
12
13    <script>
14    module.exports = {
15        data: function() {
16            return {
17                name: ''
18            }
19        }
20    }
21    </script>
22</element>
23
24<template>
25    <div style="flex-direction: row;">
26        <text class="hello">Hello</text>
27        <name name="{{name}}"></name>
28    </div>
29</template>
30
31
32<style>
33.hello {
34    font-size: 26px;
35    color: green;
36}
37</style>
38
39
40<script>
41export function data() {
42    return {
43        name: 'Weex'
44    }
45}
46</script>