What's New With 3.0
New Features
Single File Components
<!-- wires/Counter.cfm -->
<cfscript>
// @startWire
data = {
"counter" = 0
};
function increment() {
data.counter += 1;
}
// @endWire
</cfscript>
<cfoutput>
<div>
<h2>Counter: #counter#</h2>
<button wire:click="increment">+</button>
</div>
</cfoutput>Module-Aware Components
Enhancements
Removed cbValidation Dependency
Simplified Property Access
Performance Improvements
Bug Fixes
Breaking Changes
Property Access
Computed Properties
Validation Constraints
Event Emission
Was this helpful?