1.首先在根目录新建components目录,然后在components下创建组件
2.新建组件之后再需要引入的地方引用例如在pages下的classic里引用
//classic.json { "usingComponents": { "v-like":"/components/like/index" //键名是可以自定义的,为组件的名字 } } //classic.wxml <v-like />