Skip to content
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

Update vue-3.md #193

Open
wants to merge 1 commit into
base: v6
Choose a base branch
from
Open
Changes from all commits
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
4 changes: 2 additions & 2 deletions guides/framework-integration/vue-3.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ npm install --save-dev @vitejs/plugin-vue
You should now be able to start using Vue components in your Electron app. The following is a very minimal example of how to start to add Vue 3 code:

{% tabs %}
{% tab title="src/index.html" %}
{% tab title="index.html" %}

Replace the contents of `src/index.html` with a `<div>` element with the `#app` id attribute.
Replace the contents of `index.html` with a `<div>` element with the `#app` id attribute.

```html
<!DOCTYPE html>
Expand Down