Views
You can enter view
What are views?
Views are reusable handlers. You can create a view and call it at any time. View can send messages using the Answer class. For example, you can create your bot's menu using views
Create view
View is a simple function that has a name in format NameView. To create view, just export function
menu.view.ts
Call view
At first, you need to use view, import it to views
field in your module file
app.module.ts
Then you can call it using .view
answer method
app.controller.ts
Last updated