Closed
Description
<element name="foo">
<template>
<container style="margin-top: 40px;margin-bottom: 40px;">
<text onclick={{onclick}}>Bind onclick, failed</text>
</container>
</template>
</element>
<element name="bar">
<template>
<container>
<text onclick={{click}}>Bind other prop, succeed</text>
</container>
</template>
</element>
<template>
<container>
<foo onclick={{clicked}}></foo>
<bar click={{clicked}}></bar>
<!--<text >bind onclick prop</text>-->
</container>
</template>
<script>
module.exports = {
methods: {
clicked: function() {
this.$call('modal', 'toast', {'message': 'clicked!'});
}
}
}
</script>