add component to generate a static pix qrcode

This commit is contained in:
RcleydsonR
2022-11-04 17:44:59 -03:00
parent 810f44071b
commit d792eedd73
5 changed files with 161 additions and 1 deletions

View File

@@ -17,6 +17,11 @@ const router = createRouter({
// which is lazy-loaded when the route is visited.
component: () => import("../views/AboutView.vue"),
},
{
path: "/pix",
name: "pix",
component: () => import("../views/QrCodeForm.vue"),
},
],
});