-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8630a3f
commit 73f063d
Showing
36 changed files
with
105 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,13 @@ | ||
<script lang="ts"> | ||
import Vue from 'vue'; | ||
import Tree from './tree/index.vue'; | ||
export default Vue.extend({ | ||
components: { | ||
Tree, | ||
}, | ||
}); | ||
</script> | ||
|
||
<template> | ||
<div> | ||
<p> | ||
press hotkey ⌨️ <kbd>option ⌥</kbd> + <kbd>command ⌘</kbd> + <kbd>O</kbd>, | ||
then click the HTML element you wish to inspect. | ||
</p> | ||
<p>press hotkey ⌨️ <kbd>command ⌘</kbd> + 🖱 click, show component tree.</p> | ||
<Tree /> | ||
<p> | ||
press hotkey ⌨️ <kbd>option ⌥</kbd> + <kbd>command ⌘</kbd> + <kbd>O</kbd>, | ||
then press hotkey ⌨️ <kbd>command ⌘</kbd> + 🖱 click, show component tree. | ||
</p> | ||
<p>press hotkey ⌨️ <kbd>esc</kbd> or 🖱 right-click to exit inspect.</p> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 6 additions & 7 deletions
13
playground/webpack-next/src/Notes.tsx → ...round/vite-react/src/components/Notes.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
import Tree from './tree'; | ||
|
||
export default function Notes() { | ||
export default function Notes(): React.JSX.Element { | ||
return ( | ||
<> | ||
<div> | ||
<p> | ||
press hotkey ⌨️ <kbd>option ⌥</kbd> + <kbd>command ⌘</kbd> +{' '} | ||
<kbd>O</kbd>, then click the HTML element you wish to inspect. | ||
</p> | ||
<p> | ||
press hotkey ⌨️ <kbd>command ⌘</kbd> + 🖱 click, show component tree. | ||
press hotkey ⌨️ <kbd>option ⌥</kbd> + <kbd>command ⌘</kbd> +{' '} | ||
<kbd>O</kbd>, then press hotkey ⌨️ <kbd>command ⌘</kbd> + 🖱 click, show | ||
component tree. | ||
</p> | ||
<Tree /> | ||
<p> | ||
press hotkey ⌨️ <kbd>esc</kbd> or 🖱 right-click to exit inspect. | ||
</p> | ||
</> | ||
</div> | ||
); | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
<script setup lang="ts"> | ||
import Tree from './tree/index.vue'; | ||
</script> | ||
|
||
<template> | ||
<p> | ||
press hotkey ⌨️ <kbd>option ⌥</kbd> + <kbd>command ⌘</kbd> + <kbd>O</kbd>, | ||
then click the HTML element you wish to inspect. | ||
</p> | ||
<p>press hotkey ⌨️ <kbd>command ⌘</kbd> + 🖱 click, show component tree.</p> | ||
<Tree /> | ||
<p> | ||
press hotkey ⌨️ <kbd>option ⌥</kbd> + <kbd>command ⌘</kbd> + <kbd>O</kbd>, | ||
then press hotkey ⌨️ <kbd>command ⌘</kbd> + 🖱 click, show component tree. | ||
</p> | ||
<p>press hotkey ⌨️ <kbd>esc</kbd> or 🖱 right-click to exit inspect.</p> | ||
</template> |
Oops, something went wrong.