You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This guide contains steps on how to setup, contribute, build and publish to the Flutterwave Vue package.
4
+
5
+
The library is generated using 'vue-sfc-rollup' package . This package creates a set of files for building Vue libraries to simplify the build and deployment process.
6
+
7
+
###Get started
8
+
9
+
* Install the 'vue-sfc-rollup' package.
10
+
11
+
````ignorelang
12
+
npm install -g vue-sfc-rollup
13
+
````
14
+
15
+
* Pull down project from github.
16
+
17
+
* Run 'npm install' in project root folder
18
+
```ignorelang
19
+
npm install
20
+
```
21
+
22
+
###File Structure
23
+
The library code files are located in './src' folder
24
+
25
+
26
+
###Code Contribution
27
+
Please follow the guidelines below when adding features, components, etc to the library.
28
+
29
+
* Library files should be in the './src' folder
30
+
31
+
* Components should be created in the './src/lib-components' folder
32
+
33
+
* All components in the 'src/lib-components' folder should be exported in the 'src/lib-components/index.js'
0 commit comments