wepy 頁面index.wpy

2018-06-17 15:57 更新
<style type="less">
/** less **/
</style>
<template type="wxml">
    <view>
    </view>
    <component id="counter1" path="counter"></component>
</template>
<script>
import wepy form 'wepy';
import Counter from '../components/counter';
export default class Index extends wepy.page {

    config = {};
    components = {counter1: Counter};

    data = {};
    methods = {};

    events = {};
    onLoad() {};
    // Other properties
}
</script>

頁面入口繼承自wepy.page,主要屬性說明如下:

屬性說明
config頁面config,相當(dāng)于原來的index.json,同app.wpy中的config
components頁面引入的組件列表
data頁面需要渲染的數(shù)據(jù)
methodswmxl的事件捕捉,如bindtapbindchange
events組件之間通過broadcast,emit傳遞的事件
其它onLoadonReady等小程序事件以及其它自定義方法與屬性


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號