blob: 32e0e8905021dfb98623449d4103786e5a8504dd [file] [log] [blame]
<!--
* <template>: html-like syntax
* CSS-like inline style
* <style scoped>: only support single-class selector
* <script>: define the behavior of component
* :attr data-binding support
* @xxx syntax to bind event with a component method
-->
<template>
<div class="wrapper" @click="update">
<image :src="logoUrl" class="logo"></image>
<text class="title">Hello {{target}}</text>
</div>
</template>
<style scoped>
.wrapper {align-items: center; margin-top: 120px;}
.title {font-size: 48px;}
.logo {width: 360px; height: 82px;}
</style>
<script>
module.exports = {
data: {
logoUrl: 'https://alibaba.github.io/weex/img/weex_logo_blue@3x.png',
target: 'World'
},
methods: {
update: function (e) {
this.target = 'Weex'
}
}
}
</script>