23 lines
349 B
HTML
23 lines
349 B
HTML
![]() |
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<script src="../build/index.web.js"></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<h1>DOCX browser Word document generation</h1>
|
||
|
|
||
|
<button type="button" onclick="generate()">Click to generate document</button>
|
||
|
|
||
|
<script>
|
||
|
function generate() {
|
||
|
console.log('g');
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|