mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
29 lines
431 B
Vue
29 lines
431 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: {
|
|
default: 250
|
|
}
|
|
},
|
|
mounted () {
|
|
mountCodePen();
|
|
},
|
|
};
|
|
</script>
|