Can a ui component be an activator for two items? (Trying to use a v-tooltip with a v-dialog)

The Vuetify docs explain how to do this, but you'll find it in the Menu Component: https://vuetifyjs.com/en/components/menus#menu-with-activator-and-tooltip

Here's a simple example which opens a dialog with a button that has a tooltip:

<v-dialog>
  <template #activator="{ on: dialog }">
    <v-tooltip>
      <template #activator="{ on: tooltip }">
        <v-btn v-on="{ ...tooltip, ...dialog }">Button</v-btn>
      </template>
      <span>Tooltip text</span>
    </v-tooltip>
  </template>
  <v-card>
    Dialog content
  </v-card>
</v-dialog>

Thanks @Traxo. All I had to do was add the slot="activator"to both components for it to work.