Skip to content

Commit

Permalink
[ci] yarn format
Browse files Browse the repository at this point in the history
  • Loading branch information
drwpow authored and actions-user committed Jun 17, 2021
1 parent 4b96a4f commit 2590b55
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const counter = document.querySelector("#counter") as HTMLSpanElement;
const counter = document.querySelector('#counter') as HTMLSpanElement;
let seconds = 0;

setInterval(() => {
Expand Down
2 changes: 1 addition & 1 deletion create-snowpack-app/app-template-blank/src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const counter = document.querySelector("#counter")
const counter = document.querySelector('#counter');
let seconds = 0;

setInterval(() => {
Expand Down
2 changes: 2 additions & 0 deletions docs/tutorials/vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ Add an ID of `#root` to the `body` tag in your `index.html`
<script type="module" src="/index.js"></script>
</body>
```

Now you can use the new `App.vue` file in your `index.js`:

```diff
Expand All @@ -125,6 +126,7 @@ Now you can use the new `App.vue` file in your `index.js`:
+ import App from './App.vue';
+ createApp(App).mount('#root');
```

The page should now say "Welcome to my Vue app!". Congratulations! You now have your first Vue component!

## Customize your project layout
Expand Down

1 comment on commit 2590b55

@vercel
Copy link

@vercel vercel bot commented on 2590b55 Jun 17, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.