Why can't I use the el-selection tag of elemenet?

<el-select v-model="value" placeholder="">
  <el-option
    v-for="item in options"
    :key="item.value"
    :label="item.label"
    :value="item.value">
  </el-option>
</el-select>

![][1]

Mar.14,2021

this is not a pure js tag, is it probably an application like vue?


A layer of div is nested on the outside

Menu