• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<template>
2    <div class="wrap">
3        <text>{{hi}}</text>
4        <text>{{name}}</text>
5    </div>
6</template>
7
8<style>
9    .wrap {
10        flex-direction: row;
11    }
12</style>
13
14<script>
15import modal from '@weex-module/modal'
16
17export default {
18    ready() {
19        modal.toast({'message': 'ready'})
20    },
21    data() {
22        return {
23            hi: 'Hello',
24            name: 'Weex'
25        }
26    }
27}
28</script>