|
|
|
[_Host.cshtml]
<script type="text/javascript">
function saveAsFile(filename, bytesBase64) {
. . .
}
</script> à remove this script and move this script to body
<!DOCTYPE html>
<html lang="en">
<head>
. . .
<link rel='nofollow' href="_content/Syncfusion.Blazor.Themes/fabric.css" rel="stylesheet" />
<script src=https://github.com/Daddoon/Blazor.Polyfill/releases/download/3.0.1/blazor.polyfill.min.js></script>
</head>
<body>
. . .
<script type="text/javascript">
function saveAsFile(filename, bytesBase64) {
. . .
}
</script> //move here
<script src="_framework/blazor.server.js"></script>
</body>
</html>
|