From 2f8b8bad829cd053d0af9ca9b736531418b7f607 Mon Sep 17 00:00:00 2001 From: Godfrey Chan Date: Thu, 28 Mar 2019 00:30:49 -0400 Subject: [PATCH] [DOCS beta] remove component nesting docs This feature is only enabled on canary --- .../@ember/-internals/glimmer/lib/component.ts | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/packages/@ember/-internals/glimmer/lib/component.ts b/packages/@ember/-internals/glimmer/lib/component.ts index 2e76976be4a..6817c49718d 100644 --- a/packages/@ember/-internals/glimmer/lib/component.ts +++ b/packages/@ember/-internals/glimmer/lib/component.ts @@ -74,23 +74,6 @@ export const BOUNDS = symbol('BOUNDS');

Out of office this week

``` - ## File System Nesting - - Components can be nested inside sub-folders for logical groupping. For - example, if we placed our template in - `app/templates/components/person/short-profile.hbs`, we can invoke it as - ``: - - ```app/templates/application.hbs - - ``` - - Or equivalently, `{{person/short-profile}}`: - - ```app/templates/application.hbs - {{person/short-profile person=this.currentUser}} - ``` - ## Yielding Contents You can use `yield` inside a template to include the **contents** of any block