component_frame.go 202 B

1234567891011121314
  1. package ultraviolet
  2. type FrameComponentModel struct {
  3. URL string
  4. }
  5. type FrameComponentOptions struct {
  6. View View
  7. Model FrameComponentModel
  8. }
  9. type FrameComponent interface {
  10. SetUrl(url string)
  11. }