N3-components/N3-components

View on GitHub
src/Select/n3Option.vue

Summary

Maintainability
Test Coverage
<template>
  <div :value="value" :class="`${prefixCls}-option`">
    <slot></slot>
  </div>
</template>

<script>
export default {
  name: 'n3Option',
  props: {
    value: {
      type: String
    },
    prefixCls: {
      type: String,
      default: 'n3'
    }
  }
}
</script>