Skip to content

Commit 6a2104b

Browse files
authored
πŸ” meal app(on progress) (#2)
* add meal app template and functions * add new meal * add Meal page and practice vue-router * update meal detail page * add v-html
1 parent a3b3ffc commit 6a2104b

File tree

14 files changed

+28241
-0
lines changed

14 files changed

+28241
-0
lines changed

β€Žrecipe-app/README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# vue-tutorial
2+
3+
## Project setup
4+
```
5+
npm install
6+
```
7+
8+
### Compiles and hot-reloads for development
9+
```
10+
npm run serve
11+
```
12+
13+
### Compiles and minifies for production
14+
```
15+
npm run build
16+
```
17+
18+
### Lints and fixes files
19+
```
20+
npm run lint
21+
```
22+
23+
### Customize configuration
24+
See [Configuration Reference](https://cli.vuejs.org/config/).

β€Žrecipe-app/babel.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}

0 commit comments

Comments
Β (0)