Skip to content
This repository was archived by the owner on Oct 7, 2019. It is now read-only.

Commit 5c1ef3d

Browse files
committed
Update with v2
1 parent c2bed40 commit 5c1ef3d

18 files changed

+1323
-475
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,6 @@ jspm_packages
3535

3636
# Optional REPL history
3737
.node_repl_history
38+
39+
www/libs
40+
www/fonts

README.md

+47-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,51 @@
11
# Framework7 Vue Template
22

3-
Simple Framework7 + Vue setup in a single HTML file
3+
A simple Framework7 Vue setup in a single HTML file
44

5-
This template is targeted at beginners who want to start exploring Framework7 + Vue without the distraction of a complicated development environment.
5+
This template is targeted at beginners who want to start exploring Framework7 & Vue without the distraction of a complicated development environment.
6+
7+
For advanced features such as asset compilation, hot-reload and CSS extraction, we recommend that more experienced developers use [Framework7 Vue Webpack Template](https://github.com/framework7io/framework7-template-webpack)
8+
9+
## Usage
10+
11+
### 1. Download this repository
12+
```
13+
git clone https://github.com/framework7io/framework7-template-vue-simple my-app
14+
```
15+
16+
Repository will be downloaded into `my-app/` folder
17+
18+
### 2. Instal dependencies
19+
20+
Go to the downloaded repository folder and run:
21+
```
22+
npm install
23+
```
24+
25+
This will download latest version of Framework7, Framework7-Vue, Vue (to `/www/libs/`) and required icon fonts (to `/www/fonts/`)
26+
27+
### 3. Run the app
28+
29+
```
30+
npm run serve
31+
```
32+
33+
App will be opened in browser at `http://localhost:8080/`
34+
35+
## Use with cordova
36+
37+
Just put the contents of `www` folder in your cordova's project root `www` folder
38+
39+
## One command install
40+
41+
```
42+
git clone https://github.com/framework7io/framework7-template-vue-simple my-app &&
43+
cd my-app &&
44+
npm install &&
45+
npm run serve
46+
```
47+
48+
## Live Preview
49+
50+
https://framework7io.github.io/framework7-template-vue-simple/
651

7-
For advanced features such as asset compilation, hot-reload and CSS extraction, we recommend that more experienced developers use one of the other templates: [Framework7 Vue Webpack Template](https://github.com/nolimits4web/Framework7-Vue-Webpack-Template) or [Framework7 Vue Browserify Template](https://github.com/nolimits4web/Framework7-Vue-Browserify-Template).

css/app.css

-3
This file was deleted.

css/framework7.ios.colors.min.css

-15
This file was deleted.

css/framework7.ios.min.css

-15
This file was deleted.

css/framework7.material.colors.min.css

-15
This file was deleted.

css/framework7.material.min.css

-15
This file was deleted.

0 commit comments

Comments
 (0)