blob: b4c2b524efcd3b185dd394b1a7e3266e10017955 [file] [log] [blame]
<template>
<container>
<text onclick="clicked" style="text-decoration: underline; padding-left: {{paddingLeft}}">{{text}}</text>
</container>
</template>
<script>
module.exports = {
data: {
text: '',
paddingLeft: 20
},
created: function() {
this.text = 'Yes It is! Go Weex >>>';
},
methods: {
clicked: function() {
this.$openURL('http://github.com/alibaba/weex');
}
}
}
</script>