2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00
Files
vue-select/docs/.vuepress/components/CodePen.vue
T
2021-08-01 12:30:50 -07:00

31 lines
458 B
Vue

<template>
<p
:data-height="height"
data-theme-id="32252"
:data-slug-hash="url"
data-default-tab="result"
data-user="sagalbot"
class="codepen"
></p>
</template>
<script>
import mountCodePen from '../utils/codePen'
export default {
props: {
url: {
type: String,
required: true,
},
height: {
type: [String, Number],
default: 250,
},
},
mounted() {
mountCodePen()
},
}
</script>