mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 14:48:41 +00:00
11 lines
277 B
HTML
11 lines
277 B
HTML
<div class="imported-urls-order"></div>
|
|
|
|
<script type="module">
|
|
import importedUrlsOrderSuccess from './imported-urls-order'
|
|
text('.imported-urls-order', importedUrlsOrderSuccess)
|
|
|
|
function text(el, text) {
|
|
document.querySelector(el).textContent = text
|
|
}
|
|
</script>
|