closes #243
This commit is contained in:
@@ -1,16 +1,26 @@
|
||||
<template>
|
||||
<div>
|
||||
<tippy
|
||||
content="Hello!"
|
||||
:theme="theme"
|
||||
sticky
|
||||
:showOnCreate="true"
|
||||
:hideOnClick="false"
|
||||
trigger="manual"
|
||||
interactive
|
||||
>
|
||||
<button class="text-sm py-2 px-3 bg-gray-900 text-white rounded-lg">
|
||||
Theme {{ theme }}
|
||||
</button>
|
||||
|
||||
<template #content>
|
||||
Hello!
|
||||
|
||||
<button
|
||||
@click="toggleTheme"
|
||||
class="mt-4 text-sm py-2 px-3 bg-gray-900 text-white rounded-lg"
|
||||
>
|
||||
Toggle Theme - {{ theme }}
|
||||
</button>
|
||||
</template>
|
||||
</tippy>
|
||||
|
||||
<br />
|
||||
|
||||
Reference in New Issue
Block a user