Files
mini-program-table/src/pages/index.wpy

40 lines
450 B
Plaintext
Raw Normal View History

2019-07-03 19:32:18 +08:00
<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>