vue3-carousel
Version:
A simple carousel component for Vue 3
17 lines (16 loc) • 368 B
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Vue3 Carousel playground</title>
<script type="module">
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')
</script>
</head>
<body>
<div id="app"></div>
</body>
</html>