14 lines
186 B
Vue
14 lines
186 B
Vue
<template>
|
|
<div />
|
|
</template>
|
|
|
|
<script>
|
|
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
created() {
|
|
this.b = b // eslint-disable-line
|
|
}
|
|
});
|
|
</script>
|