Plugin Development
Plugin Entry Point
import { PLATFORM } from 'aurelia-pal';
export function configure(config) {
// Plugin configuration logic
config.globalResources([
PLATFORM.moduleName('./elements/my-custom-element'),
PLATFORM.moduleName('./value-converters/my-value-converter')
]);
}Configuration Methods
Method
Description
Example
Creating Resources
Custom Elements
Custom Attributes
Value Converters
Binding Behaviors
Registering Resources
Development Workflow
Running the Dev App
Testing
Managing Dependencies
Recommended Workflow
Last updated
Was this helpful?