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 = "/"
}
}
}
})