• 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 toast from './toast.js'
18
19export default {
20    ready() {
21        toast(this.name)
22    },
23    data() {
24        return {
25            name: 'Weex'
26        }
27    }
28}
29</script>