UNPKG

adonisjs-livewire

Version:

A front-end framework for AdonisJS

14 lines (13 loc) 295 B
import { Decorator } from '../support_decorators/decorator.js'; export default class Title extends Decorator { title; constructor(title) { super(); this.title = title; } async render(view) { view.share({ title: this.title, }); } }