examples: fix vweb assets example (#7949)

pull/7952/head
Daniel Däschle 2021-01-07 20:46:23 +01:00 committed by GitHub
parent 226c918bdd
commit 5dbc19410c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ pub fn (mut app App) init_once() {
pub fn (mut app App) init() {
}
pub fn (mut app App) index() {
pub fn (mut app App) index() vweb.Result {
// We can dynamically specify which assets are to be used in template.
mut am := assets.new_manager()
am.add_css('assets/index.css')
@ -37,7 +37,7 @@ pub fn (mut app App) index() {
title := 'VWeb Assets Example'
subtitle := 'VWeb can serve static assets too!'
message := 'It also has an Assets Manager that allows dynamically specifying which CSS and JS files to be used.'
$vweb.html()
return $vweb.html()
}
fn (mut app App) text() vweb.Result {