mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
31 lines
458 B
Vue
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>
|