mirror of
https://github.com/plausible/analytics.git
synced 2024-12-20 16:11:49 +03:00
8 lines
616 B
Elixir
8 lines
616 B
Elixir
|
<tr @click="volume = '<%= @volume %>'" :class="{'border-2 border-green-300 bg-opacity-20 bg-green-300': volume === '<%= @volume %>', 'border-b border-gray-200 cursor-pointer': volume !== '<%= @volume %>'}">
|
||
|
<td class="px-6 py-4 text-sm leading-5 dark:text-gray-100" :class="{'font-bold': volume === '<%= @volume %>'}"><%= @volume %></td>
|
||
|
<td class="px-6 py-4 text-sm leading-5 dark:text-gray-100" :class="{'font-bold': volume === '<%= @volume %>'}">
|
||
|
<span x-show="billingCycle === 'monthly'"><%= @monthly_price %></span>
|
||
|
<span x-show="billingCycle === 'yearly'"><%= @yearly_price %></span>
|
||
|
</td>
|
||
|
</tr>
|