readable.md
February 16, 2026 ยท View on GitHub
To make generated classes easy to read, please include this fela enhancer to the enhancers config prop and set classNames to true:
// main.js
import { Renderer } from 'fela-vue'
import monolithic from 'fela-monolithic'
const renderer = new Renderer({
enhancers: [ monolithic() ],
classNames: true // set it to export className prop to be used in the monolitic enhancer.
})
// if Options API.
Vue.mixin(renderer.mixin)