Templates
The HTML that makes up your components.
<cfscript>
// Component stuff goes here
function doSomething() {}
</cfscript>
<cfoutput>
<!-- HTML template goes here -->
<div>
<button wire:click="doSomething">Click here</button>
<!-- Any valid CFML here -->
<cfif datePart( 'h', now() ) lt 12>
<p>Good morning!</p>
<cfelse>
<p>Good afternoon!</p>
</cfif>
</div>
</cfoutput>Outer Element
Accessing Properties
Helper Methods
Nesting Components
Last updated