We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7bcdb9 commit a2910ddCopy full SHA for a2910dd
2 files changed
playground/README.md
@@ -14,8 +14,10 @@ playground/
14
├── scenarios/ # Scenario directory, add dynamically
15
│ ├── basic/ # Basic example
16
│ ├── customMain/ # Custom main entry
17
+│ ├── html/ # html as entry example
18
│ ├── pinia/ # Pinia state management example
19
│ └── vueRouter/ # Vue Router example
20
+│ └── vueUse/ # Vue Use example
21
└── src/
22
└── App.vue # Main application component
23
```
playground/index.html
@@ -5,6 +5,11 @@
5
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
<title>Playground</title>
8
+ <style>
9
+ body {
10
+ margin: 0;
11
+ }
12
+ </style>
13
<script type="module" src="./main.ts"></script>
</head>
<body>
0 commit comments