Skip to content

Commit

Permalink
refactor: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelCurrin committed Jan 5, 2022
1 parent 4110ac7 commit 1276b27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ export const routes: Array<RouteRecordRaw> = [
import(/* webpackChunkName: "generic" */ "@/views/GenericBadges.vue"),
},
{
path: "/dynamic",
name: "Dynamic",
path: "/data",
name: "Data",
component: () =>
import(/* webpackChunkName: "dynamicData" */ "@/views/DynamicBadges.vue"),
import(/* webpackChunkName: "data" */ "@/views/DataBadges.vue"),
},
{
path: "/package",
Expand Down
4 changes: 2 additions & 2 deletions src/views/DynamicBadges.vue → src/views/DataBadges.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="badges container-lg">
<div class="row">
<div class="col-12">
<h1>Dynamic data badges</h1>
<h1>Data badges</h1>
</div>
</div>

Expand Down Expand Up @@ -115,7 +115,7 @@ Sample badges:
`;
export default defineComponent({
name: "DynamicBadges",
name: "DataBadges",
components: {
Help,
Results,
Expand Down

0 comments on commit 1276b27

Please sign in to comment.