fbrctr / fabricator

A tool for building website UI toolkits and style guides
http://fbrctr.github.io/
MIT License
1.11k stars 124 forks source link

Implement Vuejs #289

Closed niho28 closed 7 years ago

niho28 commented 7 years ago

Hello

While I have managed to implement Vuejs in a very basic way (CDN) has anyone managed to implement vue js properly with fabricator without simply dumping a cdn into the toolkit?

Thanks

LukeAskew commented 7 years ago

Sorry, I don't have any experience with Vue + Fabricator.

Closing because it falls out of the scope of this project, but others are welcome to contribute to an answer.

berkandirim commented 7 years ago

I'm trying to use Vue with Fabricator. My problem is that Fabricator treats {{ }} as handlebars and strips, but I need it for my Vue data. Any suggestions?

niho28 commented 7 years ago

To output your vue data trying esacping with \

For example \{{ item.title }}

berkandirim commented 7 years ago

@niho28 thanks a lot!