master
 1class Stronglifters.Autovue extends Stronglifters.Behaviour
 2  @on "turbolinks:load"
 3
 4  execute: ->
 5    for element in $("[data-autovue]")
 6      window.views ?= []
 7      window.views.push new Vue
 8        el: element
 9        data: @data()
10
11  data: ->
12    return gon if gon?
13    {}