1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vweb: enable @ logic in the header + fix the example

This commit is contained in:
Alexander Medvednikov
2019-12-09 23:32:21 +03:00
parent 6f49d4c1d2
commit 51051cdf92
2 changed files with 4 additions and 3 deletions

View File

@ -31,7 +31,7 @@ pub fn (app mut App) index() {
$vweb.html()
}
pub fn (app & App) text() {
pub fn (app mut App) text() {
app.vweb.text('Hello world')
}