53 lines
1.0 KiB
JavaScript
53 lines
1.0 KiB
JavaScript
const steps = [
|
|
{
|
|
element: '.hamburger-container',
|
|
popover: {
|
|
title: 'Hamburger',
|
|
description: 'Open && Close sidebar',
|
|
position: 'bottom'
|
|
}
|
|
},
|
|
{
|
|
element: '.breadcrumb-container',
|
|
popover: {
|
|
title: 'Breadcrumb',
|
|
description: 'Indicate the current page location',
|
|
position: 'bottom'
|
|
}
|
|
},
|
|
{
|
|
element: '.screenfull',
|
|
popover: {
|
|
title: 'Screenfull',
|
|
description: 'Bring the page into fullscreen',
|
|
position: 'left'
|
|
}
|
|
},
|
|
{
|
|
element: '.international-icon',
|
|
popover: {
|
|
title: 'Switch language',
|
|
description: 'Switch the system language',
|
|
position: 'left'
|
|
}
|
|
},
|
|
{
|
|
element: '.theme-switch',
|
|
popover: {
|
|
title: 'Theme Switch',
|
|
description: 'Custom switch system theme',
|
|
position: 'left'
|
|
}
|
|
},
|
|
{
|
|
element: '.tags-view-container',
|
|
popover: {
|
|
title: 'Tags view',
|
|
description: 'The history of the page you visited',
|
|
position: 'bottom'
|
|
}
|
|
}
|
|
]
|
|
|
|
export default steps
|