Added galleria link to sidebar
parent
d3e93428fd
commit
7bb7b97d67
|
@ -131,6 +131,14 @@
|
||||||
<router-link to="/toast">Toast</router-link>
|
<router-link to="/toast">Toast</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<span>
|
||||||
|
<img alt="multimedia" class="layout-menu-icon-inactive" src="./assets/images/menu/multimedia.svg" />
|
||||||
|
<span>Multimedia</span>
|
||||||
|
</span>
|
||||||
|
<div>
|
||||||
|
<router-link to="/galleria">Galleria</router-link>
|
||||||
|
</div>
|
||||||
|
|
||||||
<span>
|
<span>
|
||||||
<img alt="misc" class="layout-menu-icon-inactive" src="./assets/images/menu/misc.svg" />
|
<img alt="misc" class="layout-menu-icon-inactive" src="./assets/images/menu/misc.svg" />
|
||||||
<span>Misc</span>
|
<span>Misc</span>
|
||||||
|
|
|
@ -483,6 +483,11 @@ a {
|
||||||
&.implementation {
|
&.implementation {
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
|
|
||||||
|
> hr {
|
||||||
|
margin-top: 24px;
|
||||||
|
opacity: .3;
|
||||||
|
}
|
||||||
|
|
||||||
> h3 {
|
> h3 {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
|
|
|
@ -71,6 +71,7 @@ import ToggleButton from './components/togglebutton/ToggleButton';
|
||||||
import TriStateCheckbox from './components/tristatecheckbox/TriStateCheckbox';
|
import TriStateCheckbox from './components/tristatecheckbox/TriStateCheckbox';
|
||||||
import InputMask from './components/inputmask/InputMask';
|
import InputMask from './components/inputmask/InputMask';
|
||||||
import ValidationMessage from './components/validationmessage/ValidationMessage';
|
import ValidationMessage from './components/validationmessage/ValidationMessage';
|
||||||
|
import Galleria from './components/galleria/Galleria';
|
||||||
|
|
||||||
import CodeHighlight from './views/codehighlight/CodeHighlight';
|
import CodeHighlight from './views/codehighlight/CodeHighlight';
|
||||||
|
|
||||||
|
@ -157,6 +158,7 @@ Vue.component('TreeTable', TreeTable);
|
||||||
Vue.component('TriStateCheckbox', TriStateCheckbox);
|
Vue.component('TriStateCheckbox', TriStateCheckbox);
|
||||||
Vue.component('InputMask', InputMask);
|
Vue.component('InputMask', InputMask);
|
||||||
Vue.component('ValidationMessage', ValidationMessage);
|
Vue.component('ValidationMessage', ValidationMessage);
|
||||||
|
Vue.component('Galleria', Galleria);
|
||||||
|
|
||||||
Vue.component('CodeHighlight', CodeHighlight);
|
Vue.component('CodeHighlight', CodeHighlight);
|
||||||
|
|
||||||
|
|
|
@ -599,6 +599,51 @@ export default new Router({
|
||||||
path: '/tristatecheckbox',
|
path: '/tristatecheckbox',
|
||||||
name: 'tristatecheckbox',
|
name: 'tristatecheckbox',
|
||||||
component: () => import('./views/tristatecheckbox/TriStateCheckboxDemo.vue')
|
component: () => import('./views/tristatecheckbox/TriStateCheckboxDemo.vue')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/galleria',
|
||||||
|
name: 'galleria',
|
||||||
|
component: () => import('./views/galleria/GalleriaDemo.vue')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/galleria/basic',
|
||||||
|
name: 'galleriabasic',
|
||||||
|
component: () => import('./views/galleria/GalleriaBasicDemo.vue')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/galleria/indicator',
|
||||||
|
name: 'galleriaindicator',
|
||||||
|
component: () => import('./views/galleria/GalleriaIndicatorDemo.vue')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/galleria/thumbnail',
|
||||||
|
name: 'galleriathumbnail',
|
||||||
|
component: () => import('./views/galleria/GalleriaThumbnailDemo.vue')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/galleria/preview',
|
||||||
|
name: 'galleriapreview',
|
||||||
|
component: () => import('./views/galleria/GalleriaPreviewDemo.vue')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/galleria/responsive',
|
||||||
|
name: 'galleriaresponsive',
|
||||||
|
component: () => import('./views/galleria/GalleriaResponsiveDemo.vue')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/galleria/fullscreen',
|
||||||
|
name: 'galleriafullscreen',
|
||||||
|
component: () => import('./views/galleria/GalleriaFullScreenDemo.vue')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/galleria/circular',
|
||||||
|
name: 'galleriacircular',
|
||||||
|
component: () => import('./views/galleria/GalleriaCircularDemo.vue')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/galleria/caption',
|
||||||
|
name: 'galleriacaption',
|
||||||
|
component: () => import('./views/galleria/GalleriaCaptionDemo.vue')
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
scrollBehavior() {
|
scrollBehavior() {
|
||||||
|
|
Loading…
Reference in New Issue