-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
57 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<template> | ||
|
||
<!-- | ||
Playground: A private page for components development | ||
***************************************************** | ||
Place a component you're working on here and see it | ||
live on http://localhost:4000/playground | ||
Please do not commit your local updates of this file. | ||
--> | ||
<div style="padding: 24px"> | ||
<!-- | ||
Example: Uncomment lines bellow, change something | ||
in lib/KBreadcrumbs.vue and see the updates reflected | ||
on this page | ||
--> | ||
<!-- <KBreadcrumbs | ||
:items="[ | ||
{ text: 'Global Digital Library', link: { path: '#' } }, | ||
{ text: 'English', link: { path: '#' } }, | ||
{ text: 'Level 2 ', link: { path: '#' } }, | ||
]" | ||
/> --> | ||
|
||
<!-- Play around with your component here: --> | ||
|
||
|
||
|
||
|
||
</div> | ||
|
||
</template> | ||
|
||
|
||
<script> | ||
/* | ||
Playground is a Vue component too, | ||
so you can also use `data`, `methods`, etc. | ||
as usual if helpful | ||
*/ | ||
export default { | ||
name: 'Playground', | ||
data() { | ||
return {}; | ||
}, | ||
methods: {}, | ||
}; | ||
</script> |