@radiantabyss/vue 3.1.3 → 3.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@radiantabyss/vue",
3
- "version": "3.1.3",
3
+ "version": "3.1.4",
4
4
  "author": "radiantabyss.com",
5
5
  "license": "ISC",
6
6
  "eslintConfig": {
package/src/Bootstrap.js CHANGED
@@ -18,6 +18,12 @@ import Str from './Support/Str';
18
18
  import Store from './Store';
19
19
 
20
20
  export default async (app) => {
21
+ //helpers
22
+ for ( let key in Helpers ) {
23
+ window[key] = Helpers[key];
24
+ app.config.globalProperties[key] = Helpers[key];
25
+ }
26
+
21
27
  await Components(app);
22
28
  await Directives(app);
23
29
  await Mixins(app);
@@ -29,8 +29,4 @@ let self = {
29
29
  },
30
30
  }
31
31
 
32
- for ( let helper in self ) {
33
- window[helper] = self[helper];
34
- }
35
-
36
32
  export default self;