Files
mini-program-table/src/pages/index.wpy
2019-07-04 15:18:23 +08:00

40 lines
450 B
Plaintext

<template>
<view class="container">
<table></table>
</view>
</template>
<script>
import wepy from 'wepy'
import table from '../components/table'
export default class Index extends wepy.page {
config = {
navigationBarTitleText: 'test'
}
components = {
table
}
mixins = []
data = {
}
computed = {
}
methods = {
}
events = {
}
onLoad() {
}
}
</script>