-
-
Notifications
You must be signed in to change notification settings - Fork 196
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
1 parent
4fa316d
commit 3c09e71
Showing
97 changed files
with
7,787 additions
and
495 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -15,5 +15,8 @@ | |
"lerna": "^3.19.0", | ||
"shelljs": "^0.8.3", | ||
"vue": "^2.6.11" | ||
}, | ||
"dependencies": { | ||
"@types/lodash": "^4.14.150" | ||
} | ||
} |
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
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,69 @@ | ||
<template> | ||
<div class="center examplex"> | ||
<vs-navbar text-white :color="active" center-collapsed v-model="active"> | ||
<template #left> | ||
<img src="/logos/logo-vuesax-logotipo-vuesax-png-4.png" alt=""> | ||
</template> | ||
<template #right> | ||
<vs-navbar-item :active="active == 'primary'" id="primary"> | ||
Primary | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == 'success'" id="success"> | ||
Success | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == 'danger'" id="danger"> | ||
Danger | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == 'warn'" id="warn"> | ||
Warn | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == 'dark'" id="dark"> | ||
Dark | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == '#7d33ff'" id="#7d33ff"> | ||
HEX | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == 'rgb(59,222,200)'" id="rgb(59,222,200)"> | ||
RGB | ||
</vs-navbar-item> | ||
</template> | ||
</vs-navbar> | ||
<div class="square"> | ||
<div class="child"> | ||
child 1 | ||
</div> | ||
<div class="child"> | ||
child 2 | ||
</div> | ||
<div class="child"> | ||
child 3 | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
<script> | ||
export default { | ||
data:() => ({ | ||
active: 'primary' | ||
}) | ||
} | ||
</script> | ||
<style lang="stylus"> | ||
.square | ||
height 400px | ||
position relative | ||
overflow auto | ||
width 100% | ||
.child | ||
height 400px | ||
display flex | ||
align-items center | ||
justify-content center | ||
width 100% | ||
.examplex | ||
background rgb(240,240,240) !important | ||
padding 0px !important | ||
position relative | ||
img | ||
max-height 22px | ||
</style> |
62 changes: 62 additions & 0 deletions
62
packages/docs/.vuepress/components/Navbar/default copy.vue
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,62 @@ | ||
<template> | ||
<div class="center examplex"> | ||
<vs-navbar center-collapsed v-model="active"> | ||
<template #left> | ||
<img src="/logo2.png" alt=""> | ||
</template> | ||
<vs-navbar-item :active="active == 'guide'" id="guide"> | ||
Guide | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == 'docs'" id="docs"> | ||
Documents | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == 'components'" id="components"> | ||
Components | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == 'license'" id="license"> | ||
license | ||
</vs-navbar-item> | ||
<template #right> | ||
<vs-button flat >Login</vs-button> | ||
<vs-button>Get Started</vs-button> | ||
</template> | ||
</vs-navbar> | ||
<div class="square"> | ||
<div class="child"> | ||
child 1 | ||
</div> | ||
<div class="child"> | ||
child 2 | ||
</div> | ||
<div class="child"> | ||
child 3 | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
<script> | ||
export default { | ||
data:() => ({ | ||
active: 'license' | ||
}) | ||
} | ||
</script> | ||
<style lang="stylus"> | ||
.square | ||
height 400px | ||
position relative | ||
overflow auto | ||
width 100% | ||
.child | ||
height 400px | ||
display flex | ||
align-items center | ||
justify-content center | ||
width 100% | ||
.examplex | ||
background rgb(240,240,240) !important | ||
padding 0px !important | ||
position relative | ||
img | ||
max-height 25px | ||
</style> |
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,69 @@ | ||
<template> | ||
<div class="center examplex"> | ||
<vs-navbar text-white :color="active" center-collapsed v-model="active"> | ||
<template #left> | ||
<img src="/logos/logo-vuesax-logotipo-vuesax-png-4.png" alt=""> | ||
</template> | ||
<template #right> | ||
<vs-navbar-item :active="active == 'primary'" id="primary"> | ||
Primary | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == 'success'" id="success"> | ||
Success | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == 'danger'" id="danger"> | ||
Danger | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == 'warn'" id="warn"> | ||
Warn | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == 'dark'" id="dark"> | ||
Dark | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == '#7d33ff'" id="#7d33ff"> | ||
HEX | ||
</vs-navbar-item> | ||
<vs-navbar-item :active="active == 'rgb(59,222,200)'" id="rgb(59,222,200)"> | ||
RGB | ||
</vs-navbar-item> | ||
</template> | ||
</vs-navbar> | ||
<div class="square"> | ||
<div class="child"> | ||
child 1 | ||
</div> | ||
<div class="child"> | ||
child 2 | ||
</div> | ||
<div class="child"> | ||
child 3 | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
<script> | ||
export default { | ||
data:() => ({ | ||
active: 'primary' | ||
}) | ||
} | ||
</script> | ||
<style lang="stylus"> | ||
.square | ||
height 400px | ||
position relative | ||
overflow auto | ||
width 100% | ||
.child | ||
height 400px | ||
display flex | ||
align-items center | ||
justify-content center | ||
width 100% | ||
.examplex | ||
background rgb(240,240,240) !important | ||
padding 0px !important | ||
position relative | ||
img | ||
max-height 22px | ||
</style> |
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
Oops, something went wrong.