You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
438 B
25 lines
438 B
<template> |
|
<div class="build views" |
|
:style="viewStyle"> |
|
<container :id="id" |
|
:target="target" |
|
:option="option" |
|
ref="container"></container> |
|
</div> |
|
</template> |
|
<script> |
|
import init from '@/mixins/' |
|
export default { |
|
props: { |
|
target: String, |
|
option: Object, |
|
id: [String, Number] |
|
}, |
|
mixins: [init], |
|
data () { |
|
return { |
|
viewStyle: {} |
|
} |
|
} |
|
} |
|
</script> |