1<template> 2 <wxc-list-item onclick="{{redirect}}"> 3 <text class="item-txt">{{ title }}</text> 4 </wxc-list-item> 5</template> 6 7<style> 8 .item-txt { 9 font-size: 48px; 10 color: #555; 11 } 12</style> 13 14<script> 15 require('weex-components'); 16 module.exports = { 17 data: { 18 title: '', 19 url: '' 20 }, 21 methods: { 22 redirect: function() { 23 this.$openURL(this.url); 24 } 25 } 26 } 27</script>