Files
Quill/index.html

17 lines
354 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Index</title>
<script type="module">
import * as quill from 'quill.js';
window.quill = {};
Object.entries(quill).forEach(([name, exported]) => window.quill[name] = exported);
</script>
</head>
<body>
<script type="module" src="index.js"></script>
</body>
</html>