diff --git a/README.md b/README.md
index 58341fae..a587fa2d 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@
-# Iris Web Framework
+# Iris Web Framework
[](https://github.com/kataras/iris/actions/workflows/ci.yml) [](https://github.com/kataras/iris/tree/master/_examples) [](https://gitter.im/iris_go/community) [](https://iris-go.com/donate)
@@ -23,7 +23,6 @@ Iris is a fast, simple yet fully featured and very efficient web framework for G
It provides a beautifully expressive and easy to use foundation for your next website or API.
-
```go
package main
diff --git a/README_ZH.md b/README_ZH.md
index bbb997ac..12ba034d 100644
--- a/README_ZH.md
+++ b/README_ZH.md
@@ -1,4 +1,4 @@
-# Iris Web Framework
+# Iris Web Framework
[Traditional Chinese (zht / zh-Hant)](README_ZH_HANT.md)
diff --git a/_examples/mvc/vuejs-todo-mvc/src/web/main.go b/_examples/mvc/vuejs-todo-mvc/src/web/main.go
index 8a2d54e6..ba653a80 100644
--- a/_examples/mvc/vuejs-todo-mvc/src/web/main.go
+++ b/_examples/mvc/vuejs-todo-mvc/src/web/main.go
@@ -30,6 +30,11 @@ func main() {
// create a sub router and register the http controllers.
todosRouter := app.Party("/todos")
+ // Register sessions handler.
+ // TodoController.Session will automatically
+ // filled with the current request's session.
+ todosRouter.Use(sess.Handler())
+
// create our mvc application targeted to /todos relative sub path.
todosApp := mvc.New(todosRouter)