mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-02 03:57:36 +08:00
add reference links to benchmarks
This commit is contained in:
parent
f0bae1155b
commit
45e1af4dae
@ -10,14 +10,15 @@
|
||||
<body>
|
||||
<div id="el">
|
||||
<h1>Rendering Dynamic Big Table</h1>
|
||||
<p>Reference: <a href="http://insin.github.io/ui-lib-samples/large-datasets/index.html">insin/ui-lib-samples/large-datasets</a></p>
|
||||
|
||||
<p>
|
||||
<span>{{ rows }} x {{ cols }}, {{ optimized ? 'with' : 'without' }} optimization. {{ msg }}</span>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<button v-if="optimized" @click="loadBase">Base version</button>
|
||||
<button v-else @click="loadOptimized">Optimized version (Object.freeze)</button>
|
||||
<button v-if="optimized" @click="loadBase">Disable optimization</button>
|
||||
<button v-else @click="loadOptimized">Enable optimization (Object.freeze)</button>
|
||||
<button @click="unmount">Unmount</button>
|
||||
<button @click="rerender">Rerender with fresh data</button>
|
||||
</p>
|
||||
|
@ -7,6 +7,9 @@
|
||||
<title>dbmon (Vue)</title>
|
||||
</head>
|
||||
<body>
|
||||
<h2>
|
||||
Reference: <a href="http://mathieuancelin.github.io/js-repaint-perfs/">js-repaint-perfs</a>
|
||||
</h2>
|
||||
<div id="app">
|
||||
<table class="table table-striped lastest-data">
|
||||
<tbody>
|
||||
|
Loading…
Reference in New Issue
Block a user