Skip to content

Commit e861ea8

Browse files
v0.0.4 setup completed for testing
1 parent df2cf7c commit e861ea8

File tree

8 files changed

+12788
-537
lines changed

8 files changed

+12788
-537
lines changed

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.DS_Store
2+
node_modules/
3+
dist/
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
test/unit/coverage
8+
test/e2e/reports
9+
selenium-debug.log
10+
11+
# Editor directories and files
12+
.idea
13+
.vscode
14+
*.suo
15+
*.ntvs*
16+
*.njsproj
17+
*.sln

README.md

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,23 @@ This is a survey builder component for vue.js applications.
44
### How to install
55
You can install the component using `npm i -S vue-survey-builder`
66

7+
### Demo
8+
You can see the demo [here](http://vue-survey-builder.s3-website-us-east-1.amazonaws.com/#/)
9+
10+
### Demo Source Code
11+
Please look at the sample code [here](https://github.com/rajeshwarpatlolla/vue-survey-builder-test)
12+
713
### Steps to use
814
*Step 1:*
9-
Install is using the above command from npm registry
10-
There are two components,
11-
1. **SurveyBuilder**: You can use this to build the survey.
12-
2. **QuestionsView**: You can use this to view the list of questions added.
15+
Once you it install, you can import the `SurveyBuilder` by
1316

14-
You can import them using
17+
`import SurveyBuilder from 'SurveyBuilder';`
1518

16-
`import { SurveyBuilder } from 'SurveyBuilder';`
19+
*Step 2:*
20+
We are using [this JSON](https://github.com/FissionHQ/vue-survey-builder/blob/master/src/survey-builder.json) to build any type of question. Depending on the type of question, only few keys are used in the whole JSON.
1721

18-
`import { QuestionsView } from 'SurveyBuilder';`
22+
*Step 3:*
1923

20-
*Step 2:*
21-
We are using [this JSON]() to build any type of question. Depending on the type of question, only few keys are used in the whole JSON.
2224

2325
### Keys of the JSON
2426
- **id** : This is a unique field, which will be created dynamically for every qiestion. This field is required for all type of questions.
@@ -48,12 +50,6 @@ We are using [this JSON]() to build any type of question. Depending on the type
4850
- DATE
4951
- TIME
5052

51-
### Demo
52-
You can see the demo [here]()
53-
54-
### Demo Source Code
55-
Please look at the sample code [here]()
56-
5753
### Versions
5854
#### 0.1.0
5955
This version is the initial official release of this component. It has all the required functionalities to build the surveys using vue.js
@@ -70,4 +66,4 @@ This version is the initial official release of this component. It has all the r
7066
[Fission Labs](http://fissionlabs.com/)
7167

7268
### LICENSE
73-
Please read it [here]()
69+
Please read it [here]()

0 commit comments

Comments
 (0)