December 20, 2018
Taffy for REST – Part 9: Buefy flavored HTML
Comments
(0)
December 20, 2018
Taffy for REST – Part 9: Buefy flavored HTML
Been a ColdFusion Developer since 1996
Newbie 24 posts
Followers: 15 people
(0)

I talked a lot about Buefy in video 8, but I didn’t have a chance to dive into the HTML. Rather than having a long video, I split it at the end of the `assets/app.js` discussion.

Patterns

VueJS

`{{ }}`      ie `{{login_token}}`
`v-`         ie `v-model`
`@something` ie `@click`
`:something` ie `:class="showhide"`

Bulma

<div class="container">
  <div class="columns">
     <div class="column">

Buefy

<b-input
     v-model.trim="captcha"
     id="captcha"
     >
</b-input>

Resources:

https://coldfusion.adobe.com/2018/11/vuejs-for-coldfusion-programmers-first-10-minutes/

https://vuejs.org/v2/guide/installation.html

https://vuejs.org/v2/guide/instance.html

https://vuejs.org/v2/guide/events.html

Source Code:

https://github.com/jmohler1970/Taffy_withUI

0 Comments
Add Comment