Vue.component("footBar", { template: `
首页
地图
消息
我的
`, data() { return { } }, props: ['activeBtn'], methods: { toPage(i) { if (i === 0) { location.href = "/blog-edit.html" } else if (i === 4) { location.href = "/info.html" } else if (i === 1){ location.href = "/" } } } })