Easy tabs.
https://luna.liriliri.io/?path=/story/tab
Add the following script and style to your page.
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/luna-tab/luna-tab.css" />
<script src="//cdn.jsdelivr.net/npm/luna-tab/luna-tab.js"></script>
You can also get it on npm.
npm install luna-tab --save
import 'luna-tab/luna-tab.css'
import LunaTab from 'luna-tab'
const container = document.getElementById('container')
const tab = new LunaTabs(container, {
height: 30,
})
tab.append({
id: 'console',
title: 'Console',
})
tab.select('console')
tab.on('select', id => {
console.log(id)
})
- height(number): Tab height.
Append tab.
Deselect tabs.
Insert tab at given position.
Remove tab.
Select tab.
- id(string): Tab id.
- title(string): Tab title.