I thought that one should extend .cfc
components, but I am reading the cfwheels
framework source where I see something like this:
<cfcomponent output="false" displayName="Controller">
<cfinclude template="../wheels/controller.cfm">
</cfcomponent>
What is the difference between extending the component and including a template as is done above?
Also, are there any scoping issues that I should keep in mind?