新建文件
根目录新建名为“component”的文件夹,并在其目录下新建moreGame.js,moreGame.wxml,moreGame.wxss和moreGame.json。
moreGame.json
{
"component": true
}
js文件配置详情看官方文档
index.json
{
"usingComponents": {
"more-game": "../../component/moreGame"
}
}
index.wxml
<more-game></more-game>