mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vweb: implement live page reload in development, based on polling (useful with watch) (#17683)
This commit is contained in:
4
examples/vweb/footer.html
Normal file
4
examples/vweb/footer.html
Normal file
@ -0,0 +1,4 @@
|
||||
<br/><br/>
|
||||
footer
|
||||
</body>
|
||||
</html>
|
@ -1 +1,8 @@
|
||||
<!doctype html>
|
||||
<html lang=en>
|
||||
<head>
|
||||
<meta charset=utf-8>
|
||||
<title>vweb example page</title>
|
||||
</head>
|
||||
<body>
|
||||
header <br><br>
|
||||
|
@ -21,3 +21,4 @@ For loop demo: <br>
|
||||
|
||||
<hr>
|
||||
End.
|
||||
@include 'footer.html'
|
||||
|
Reference in New Issue
Block a user