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