Skip to content

chore(vite installation guide): add installation guide using pnpm #1374

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 17, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore(installation guide): add installation guide using pmpm
  • Loading branch information
dammy001 committed Dec 9, 2021
commit d25d46578ab8f5a84b86774bbf8ef4ee6030584c
4 changes: 2 additions & 2 deletions src/guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,14 +179,14 @@ If you need to compile templates on the client (e.g. passing a string to the tem
```js
// this requires the compiler
Vue.createApp({
template: '<div>{{ hi }}</div>',
template: '<div>{{ hi }}</div>'
})

// this does not
Vue.createApp({
render() {
return Vue.h('div', {}, this.hi)
},
}
})
```

Expand Down