一种用 Go 编写 HTML 用户界面的语言

Viewed 12

代码示例:

package main

templ Hello(name string) {
  <div>Hello, { name }</div>
}

templ Greeting(person Person) {
  <div class="greeting">
    @Hello(person.Name)
  </div>
}

会将代码组件编译成高性能的Go代码。
项目地址:https://github.com/a-h/templ

0 Answers