mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
15 lines
208 B
JavaScript
15 lines
208 B
JavaScript
import config from '../../config';
|
|
import Page from '../../common/page';
|
|
|
|
Page({
|
|
data: {
|
|
list: config
|
|
},
|
|
|
|
onShareAppMessage() {
|
|
return {
|
|
title: 'Vant Weapp 组件库演示'
|
|
};
|
|
}
|
|
});
|