21 lines
258 B
Vue
21 lines
258 B
Vue
|
<template>
|
||
|
<span><slot /></span>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'LayerProvider',
|
||
|
props: {
|
||
|
layer: String,
|
||
|
index: Number
|
||
|
},
|
||
|
provide() {
|
||
|
const { layer, index } = this;
|
||
|
return { layer, index };
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
</style>
|