All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.javalin.plugin.rendering.vue.VueRenderer.kt Maven / Gradle / Ivy

The newest version!
package io.javalin.plugin.rendering.vue

import io.javalin.http.Context

open class VueRenderer {
    open fun preRender(layout: String, ctx: Context) = layout // no changes by default
    open fun postRender(layout: String, ctx: Context) = layout // no changes by default
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy