When am trying to Use List View From Frappe UI in Vue Js Its showing Module Not Found

image

  <ListRows>
    <ListRow v-for="row in rows" :key="row.id" :row="row">
      <template #default="{ column, item }">
        <ListRowItem :item="item" :align="column.align">
          <template #prefix></template>
        </ListRowItem>
      </template>
    </ListRow>
  </ListRows>

  <ListSelectBanner>
    <template #actions="{ unselectAll }">
      <div class="flex gap-2">
        <Button variant="ghost" label="Delete" />
        <Button variant="ghost" label="Unselect all" @click="unselectAll" />
      </div>
    </template>
  </ListSelectBanner>
</ListView>

import { ListView } from ‘frappe-ui’;