From: Evan You Date: Tue, 3 Dec 2024 14:55:48 +0000 (+0800) Subject: chore: playground X-Git-Tag: v3.6.0-alpha.1~16^2~246 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e88c4e2ea7bfbbba881a69cfadd9f63bea9c3c54;p=thirdparty%2Fvuejs%2Fcore.git chore: playground --- diff --git a/playground/src/main.ts b/playground/src/main.ts index 278c60ee7b..9d682d9ffb 100644 --- a/playground/src/main.ts +++ b/playground/src/main.ts @@ -1,13 +1 @@ -import { createComponentSimple, createVaporAppSimple } from 'vue/vapor' -import List from './list' -import Props from './props' -import './style.css' - -const s = performance.now() -const app = createVaporAppSimple({ - setup() { - return [createComponentSimple(Props), createComponentSimple(List)] - }, -}) -app.mount('#app') -console.log((performance.now() - s).toFixed(2)) +import './_entry' diff --git a/playground/src/style.css b/playground/src/style.css index c6dd2c88fa..832e61618b 100644 --- a/playground/src/style.css +++ b/playground/src/style.css @@ -1,3 +1,6 @@ .red { color: red; } +.green { + color: green; +}