Component({ properties: { title: { type: String, value: '' }, showBtn: { type: Boolean, value: true } }, data: { }, attached: async function () { }, methods: { gotoLogin(){ wx.navigateTo({ url: "../../userLogin/pages/login/index" }) } } })