From 215823d4a764d87b3e4c13767f748e61f06aebfc Mon Sep 17 00:00:00 2001 From: heyujie <516346543@qq.com> Date: 星期六, 07 五月 2022 12:11:15 +0800 Subject: [PATCH] add sub user reset --- src/scripts/component.js | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/scripts/component.js b/src/scripts/component.js index b0924d3..ae74329 100644 --- a/src/scripts/component.js +++ b/src/scripts/component.js @@ -1,9 +1,14 @@ // 寮曞叆缁勪欢 import ImageShow from "@/components/subComponents/ImageShow.vue"; +import PwInput from "@/components/subComponents/PwInput.vue"; // 鍒涘缓涓┖瀵硅薄 // 璁剧疆瀹夎鏂规硶 ImageShow.install = function(Vue) { Vue.component("ImageShow", ImageShow); }; + +PwInput.install = function(Vue) { + Vue.component("PwInput", PwInput); +}; // 瀵煎嚭瀵硅薄 -export default ImageShow; +export { ImageShow, PwInput }; -- Gitblit v1.8.0