package vue-jsoo

  1. Overview
  2. Docs

functor to create a route with a component with typecheck of input data

Parameters

module S : sig ... end

Signature

type data = S.data
include Vue_component.Tables_S with type all = S.all
type all = S.all
val methods_t : Mjs.any Mjs.table
val watch_t : (all Mjs.t -> Mjs.any -> Mjs.any -> Mjs.any) Mjs.table
val computed_t : (all Mjs.t -> Mjs.any Mjs.optdef) Mjs.table
val add_method : string -> (all Mjs.t -> 'a) -> unit
val add_method0 : string -> (all Mjs.t -> 'a) -> unit
val add_method1 : string -> (all Mjs.t -> 'a -> 'b) -> unit
val add_method2 : string -> (all Mjs.t -> 'a -> 'b -> 'c) -> unit
val add_method3 : string -> (all Mjs.t -> 'a -> 'b -> 'c -> 'd) -> unit
val add_method4 : string -> (all Mjs.t -> 'a -> 'b -> 'c -> 'd -> 'e) -> unit
val add_watch : string -> (all Mjs.t -> 'a -> 'a -> 'b) -> unit
val add_computed : string -> (all Mjs.t -> 'a Mjs.optdef) -> unit
val add_2way_computed : string -> get:(all Mjs.t -> 'a Mjs.optdef) -> set:(all Mjs.t -> 'b -> unit) -> unit
val add_component : string -> ('a, 'b) Vue_component.Internal.component_arg Mjs.t -> unit
val merge_lists_component : ?computed:(string * (all Mjs.t -> Mjs.any Mjs.optdef)) list -> ?methods:(string * Mjs.any) list -> ?watch:(string * (all Mjs.t -> Mjs.any -> Mjs.any -> Mjs.any)) list -> ?components: (string * (Mjs.top, Mjs.top) Vue_component.Internal.component_arg Mjs.t) list -> unit -> unit
include Tables_S
val routes_t : (Mjs.top, Mjs.top) route Mjs.t list Stdlib.ref
val add_route : ('a, 'b) route Mjs.t -> unit
val merge_routes : ?routes:(Mjs.top, Mjs.top) route Mjs.t list -> unit -> unit
val make : ?export:bool -> ?data:(all Mjs.t -> S.data Mjs.t) -> ?computed:(string * (all Mjs.t -> Mjs.any Mjs.optdef)) list -> ?methods:(string * Mjs.any) list -> ?watch:(string * (all Mjs.t -> Mjs.any -> Mjs.any -> Mjs.any)) list -> ?components: (string * (Mjs.top, Mjs.top) Vue_component.Internal.component_arg Mjs.t) list -> ?children:(Mjs.top, Mjs.top) route Mjs.t list -> ?path:string -> ?enter:(Vue_nav.push_obj -> Vue_nav.push_obj -> all Vue_nav.next) -> ?update: (all Mjs.t -> Vue_nav.push_obj -> Vue_nav.push_obj -> all Vue_nav.next) -> ?lifecycle:(string * (all Mjs.t -> unit)) list -> ?mixins:Mjs.any list -> unit -> (data, all) route Mjs.t

make the route combining previously added methods/watch/computed

Unsafe functions

val get : unit -> (data, all) route Mjs.t

unsafe reference to component object