blob: ab5c28e846bc3d7019309e19d1eaa95fc8edc80b [file] [log] [blame]
import template from './b.tpl';
import * as event from '@weex-module/event';
module.exports = {
data: {
text: '',
paddingLeft: 20
},
template,
created() {
this.text = 'Yes It is! Go Weex >>>';
},
methods: {
clicked: function() {
event.openURL('https://github.com/alibaba/weex_toolchain');
}
}
};