naive-ui/demo/documentation/components/dropdown/enUS/placement.md

627 B
Raw Blame History

Placement

<n-dropdown @select="handleSelect" placement="bottom-start">
  <template v-slot:activator>
    <n-button>I want to go sleep!</n-button>
  </template>
  <n-dropdown-item
    v-for="hotel in hotels"
    :key="hotel"
    :name="hotel.toLowerCase()"
  >
    {{ hotel }}
  </n-dropdown-item>
</n-dropdown>
export default {
  data () {
    return {
      hotels: [
        'Marina Bay Sands, Singapore', 'Browns Hotel, London', 'Atlantis Bahamas, Nassau', 'The Beverly Hills Hotel, Los Angeles'
      ]
    }
  },
  methods: {
    handleSelect (name) {
      this.$NMessage.info(name)
    }
  }
}