Skip to content
Snippets Groups Projects
Commit 7793ca4f authored by Gilgard's avatar Gilgard
Browse files

View for testing base components

parent b36d61ed
No related branches found
No related tags found
1 merge request!62Icon button
......@@ -97,6 +97,11 @@ const routes = [
name: "GroupHome",
component: () => import("../views/CommunityViews/CommunityHomeView.vue"),
},
{
path: "/test",
name: "test",
component: () => import("../views/TestView.vue"),
},
];
const router = createRouter({
......
<template>
<div />
</template>
<script>
export default {
data() {
return {
show: false,
};
},
components: {},
methods: {
toggleModal() {
this.show = !this.show;
},
},
};
</script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment