Skip to content

Instantly share code, notes, and snippets.

Created February 16, 2014 07:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/9030875 to your computer and use it in GitHub Desktop.
Save anonymous/9030875 to your computer and use it in GitHub Desktop.
package main.scala.example.components
import main.scala.example._
import scalatags.all._
trait LayoutData extends Schema{
var name: String = ???
}
object Layout {
def create(): Vue[LayoutData] = VueLoader.createVue[LayoutData](
html(
div(
h1("Hello, {{name}}"),
p("This is my first paragraph")
)
).toString)
}
package main.scala.example
import scala.scalajs.js
import scalatags.all._
import js.Dynamic.{
newInstance,
global,
literal
}
trait Schema extends js.Object{
}
object VueLoader {
// itniailize with template string and interface
def createVue[T](str:String): Vue[T] =
newInstance(global.Vue)(
literal(template = str)
).asInstanceOf[Vue[T]]
// initialize with options
def createVue[T](options: js.Object): Vue[T] =
newInstance(global.Vue)(options).asInstanceOf[Vue[T]]
}
trait Vue[T] extends js.Object{
def el: js.Any = ???
def $el: js.Any = ???
def $: js.Any = ???
def $data: T = ???
def $methods: js.Object = ???
def $appendTo(s: js.Any): js.Any = ???
def $before(s: js.Any): js.Any = ???
def $after(s: js.Any): js.Any = ???
def $remove(): js.Any = ???
def $destroy(): js.Any = ???
def $watch(keypath:String, callback: js.Function): js.Any = ???
def $unwatch(keypath:String, callback: js.Function): js.Any = ???
def $dispatch(event: String, args: js.Any *): js.Any = ???
def $broadcast(event: String, args: js.Any *): js.Any = ???
def $emit(event: String, args: js.Any *): js.Any = ???
def $on(event: String, callback: js.Function): js.Any = ???
def $once(event: String, callback: js.Function): js.Any = ???
def $off(): js.Any = ???
def $off(event: String): js.Any = ???
def $off(event: String, callback: js.Function): js.Any = ???
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment