-
-
Notifications
You must be signed in to change notification settings - Fork 295
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
f8fb23f
commit ece8796
Showing
4 changed files
with
142 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Size Check | ||
|
||
This package is private and is used for checking the baseline runtime size after tree-shaking (with only the bare minimal code required to render something to the screen). |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "@vueup/size-check", | ||
"version": "3.0.9", | ||
"private": true, | ||
"buildOptions": { | ||
"name": "SizeCheck", | ||
"formats": [ | ||
"global" | ||
] | ||
}, | ||
"dependencies": { | ||
"vue": "^3.0.9" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { h, createApp } from 'vue' | ||
import { QuillEditor } from '@vueup/vue-quill' | ||
|
||
// The bare minimum code required for rendering something to the screen | ||
const app = createApp({ | ||
render: () => h('div', 'hello world!') | ||
}) | ||
app.component('Editor', QuillEditor) | ||
app.mount('#app') |