32 lines
513 B
HTML
32 lines
513 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>electron-tabs-demo</title>
|
|
</head>
|
|
<body style="margin:0">
|
|
|
|
<tab-group></tab-group>
|
|
|
|
<script src="../dist/electron-tabs.js"></script>
|
|
<script>
|
|
const tabGroup = document.querySelector("tab-group");
|
|
tabGroup.newTab = {
|
|
title: "New Tab"
|
|
}
|
|
|
|
tabGroup.addTab({
|
|
title: 'Google',
|
|
src: 'http://google.com',
|
|
});
|
|
|
|
tabGroup.addTab({
|
|
title: "Electron",
|
|
src: "http://electron.atom.io",
|
|
visible: true,
|
|
active: true
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|