• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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>
17import modal from '@weex-module/modal'
18import getName from './getName.js'
19
20export function ready() {
21    modal.toast({message: this.name})
22}
23
24export function data() {
25    return {
26        name: getName()
27    }
28}
29</script>