mirror of
https://github.com/quarkcloudio/quark-go.git
synced 2025-09-26 20:11:11 +08:00
13 lines
144 B
Go
13 lines
144 B
Go
package searches
|
|
|
|
type Select struct {
|
|
Search
|
|
}
|
|
|
|
// 初始化
|
|
func (p *Select) ParentInit() interface{} {
|
|
p.Component = "select"
|
|
|
|
return p
|
|
}
|