get the data to work with active_yaml

This commit is contained in:
2023-02-08 11:55:44 +02:00
parent 1181dd0bfd
commit b956f5709a
18 changed files with 82 additions and 64 deletions

View File

@ -0,0 +1 @@
//= link_directory ../javascript .js

View File

@ -1 +1,2 @@
//= link_directory ../stylesheets/vue_r .css
//= link_directory ../../javascript .js

View File

@ -0,0 +1,12 @@
require "opal"
# Uncomment the following to print out you're hello-world with Opal:
#
# puts "hello world!"
#
# The following will append a hello-world to your <body> element:
#
# require "native"
# $$[:document].addEventListener :DOMContentLoaded do
# $$[:document][:body][:innerHTML] += '<h2>Hello World!</h2>'
# end

View File