Skip to content

Commit e88a1dd

Browse files
committed
rename MD link from first line (as it's displayed on npmjs.org)
1 parent b260a8b commit e88a1dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# vue-extensionpoints
22

3-
This library is a [Vue.js](https://vuejs.org) plugin providing a custom element which acts as extension point, with a named "hook". Plugins of your application then can provide components for this extension point which are automatically found and rendered replacing the extension.
3+
This library is a Vue plugin providing a custom element which acts as extension point, with a named "hook". Plugins of your application then can provide components for this extension point which are automatically found and rendered replacing the extension.
44

55
This is intended wherever you need to have a "list" of different looking components at one place each provided by a plugin.
66

77
If you just need a list of the same component, just with different data, don't use `vue-extensionpoints` just use a `v-for` directive.
88

99
## Install
1010

11-
The easiest way to install this library in your project is to use the corresponding Vue CLI plugin [extensionpoints](https://github.com/nerdocs/vue-cli-plugin-extensionpoints). It will do all magic for you:
11+
The easiest way to install this library in your project is to use the corresponding Vue CLI plugin [extensionpoints](https://github.com/nerdocs/vue-cli-plugin-extensionpoints). It will do all magic for you:
1212
```bash
1313
# vue add extensionpoints
1414
```
@@ -73,7 +73,7 @@ You have an `<extensionpoint>` tag in your project available now:
7373
```
7474

7575
The *vue-extensionpoints* plugin renders the hooked elements replacing the <extensionpoint> element, one after another. It's up to you what the plugin is rendering: One plugin can render a simple `<div>` element with an image, the next plugin (same hook!) can render a complicated component with variables, sub-components etc. The `extensionpoint` renders them one after another. You only have to make sure that your components do what they promise: in the sample case above, `FooListElement` should render a \<li\> element - because it will be rendered within an \<ul\> element. But thee are no constraints, you are free to choose.
76-
76+
7777

7878
## Development
7979

0 commit comments

Comments
 (0)