Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 402 Bytes

readable.md

File metadata and controls

15 lines (11 loc) · 402 Bytes

To make generated classes easy to read, please include this fela enhancer to the enhancers config prop:

// main.js
import { Renderer } from 'fela-vue'
import monolithic from 'fela-monolithic'

const renderer = new Renderer({
  enhancers: [ monolithic() ]
})

// if Options API.
Vue.mixin(renderer.mixin)