| 1 |
import { RouteBase } from "@/types/enums"; |
| 2 |
import { translate } from "@/utils/helpers"; |
| 3 |
import Home from "@/views/HostingerTools.vue"; |
| 4 |
|
| 5 |
export default [ |
| 6 |
{ |
| 7 |
path: "/", |
| 8 |
name: RouteBase.HOSTINGER_TOOLS, |
| 9 |
meta: { |
| 10 |
title: translate("routes_tools"), |
| 11 |
headerButton: { |
| 12 |
text: translate("hostinger_tools_open_guide"), |
| 13 |
href: "https://www.hostinger.com/tutorials/how-to-use-hostinger-tools-plugin" |
| 14 |
}, |
| 15 |
previewSiteButton: { |
| 16 |
text: translate("hostinger_tools_preview_site") |
| 17 |
}, |
| 18 |
editSiteButton: { |
| 19 |
text: translate("hostinger_tools_edit_site") |
| 20 |
} |
| 21 |
}, |
| 22 |
component: Home |
| 23 |
} |
| 24 |
]; |
| 25 |
|