diff --git a/README.md b/README.md
index e7dc72f..b11b144 100644
--- a/README.md
+++ b/README.md
@@ -132,6 +132,23 @@ class Action
}
}
```
+> 如果需要使用view模板则需要继承`\think\addons\Controller`类
+> 模板文件所在位置为插件目录的view中,规则与模块中的view规则一致
+
+```
+fetch();
+ }
+}
+```
## 使用钩子
> 创建好插件后就可以在正常业务中使用该插件中的钩子了
@@ -140,14 +157,14 @@ class Action
### 模板中使用钩子
```
-
{:hook('test', ['id'=>1])}
+{:hook('testhook', ['id'=>1])}
```
### php业务中使用
> 只要是thinkphp5正常流程中的任意位置均可以使用
```
-hook('test', ['id'=>1])
+hook('testhook', ['id'=>1])
```
## 插件目录结构
@@ -159,6 +176,9 @@ tp5
-- test
--- controller
---- Action.php
+ --- view
+ ---- action
+ ----- link.html
--- config.php
--- info.html
--- Test.php
diff --git a/composer.json b/composer.json
index 59007bc..a141988 100644
--- a/composer.json
+++ b/composer.json
@@ -4,7 +4,7 @@
"homepage": "https://github.com/5ini99/think-addons",
"license": "Apache-2.0",
"minimum-stability": "stable",
- "version": "1.0.3",
+ "version": "1.0.4",
"authors": [
{
"name": "xiaobo.sun",