Commit cc0a3b8c authored by Evan Read's avatar Evan Read

Merge branch 'docs-fix-import-mixin-from-ee-else-ce-path-example' into 'master'

Fix example block for mixin from ee-else-ce path

See merge request gitlab-org/gitlab-ce!26808
parents a615a6b2 1d6b8eab
......@@ -909,14 +909,15 @@ export default {
- Since we [can't async load a mixin](https://github.com/vuejs/vue-loader/issues/418#issuecomment-254032223) we will use the [`ee_else_ce`](https://docs.gitlab.com/ee/development/ee_features.html#javascript-code-in-assetsjavascripts) alias we already have for webpack.
- This means all the EE specific props, computed properties, methods, etc that are EE only should be in a mixin in the `ee/` folder and we need to create a CE counterpart of the mixin
##### Example:
```javascript
import mixin from 'ee_else_ce/path/mixin';
##### Example:
```javascript
import mixin from 'ee_else_ce/path/mixin';
{
{
mixins: [mixin]
}
```
}
```
- Computed Properties/methods and getters only used in the child import still need a counterpart in CE
- For store modules, we will need a CE counterpart too.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment