blob: e6923a2fed25db06044b88093e23a71494e08598 [file] [log] [blame]
<template>
<text @click="clickHandler">{{text}}</text>
</template>
<script>
var modal = weex.requireModule('modal')
module.exports = {
props: ['text', 'href'],
methods: {
clickHandler: function () {
modal.toast({
message: 'click',
duration: 1
});
}
}
};
</script>