Tim Landwerth
Tim Landwerth
@CalvinWalzel I had the same Issue and made a PR for it: #119
@ChrisShank Do you have a working setup for Typescript? If so, would you be willing to share it? I struggled with including support for `.ts` files…
@ChrisShank Thanks a lot, adding your changes worked like a charm 🎉 Now only vetur needs to remove the `The template root requires exactly one element.`-error, but I can ignore...
@glitteringkatie I had the same problem and solved it by conditionally including the files in `assets.rb` ```ruby # config/initializers/assets.rb Rails.application.config.assets.precompile += […] if Rails.env.development? ``` This way, we are using...
I want to add to this that I was also quite confused. Turbo-Rails always supports two possible variants: ``` turbo_stream.replace("myid") # Will target a single node with id="myid" turbo_stream.replace_all("#myid") #...
@nashby Thanks for looking into this! I added two failing test cases in #460. Commenting out `enumerize :locale, ...` will make the tests green.
That sounds good, thank you for taking the time for a fix 💙 We are in no hurry with regards to updating, so no worries!
@mikeu Thank you for investigating this issue! I have the exact same problem as @1Luc1, we copied the same example code when upgrading to Vue 3, to still have a...