blob: 7409acdd73cfc2749df967e2c99bb5138e2f5c26 [file] [log] [blame]
<template>
<text class="link" if={{href}} onclick="{{_clickHandler}}">{{text}}</text>
</template>
<script>
module.exports = {
data: {
text: '',
href: ''
},
methods: {
_clickHandler: function () {
this.$call('modal', 'toast', {
message: 'click',
duration: 1
});
}
}
};
</script>