<div v-show="selectedProject" class="modal">
...
{{ selectedProject.title }}
...
</div>
Language of results
accept-language=<browser language string>
Preferred language order for showing search results, overrides the value specified in the "Accept-Language" HTTP header. Either use a standard RFC2616 accept-language string or a simple comma-separated list of language codes.
`subscriptionEndTime` = NOW() + INTERVAL 30 DAY
.`subscriptionEndTime` > NOW() AS `isSubscriptionActive`
.WITH `cte` (`id`, `price`, `date`, `row`) AS (
SELECT `good`, `price`, `date`, ROW_NUMBER() OVER `win`
FROM `item_good_supplies`
WHERE `good` IN('23068', '21805', '23204', '22493', '21813', '21802', '23845')
WINDOW `win` AS (
PARTITION BY `good`
ORDER BY `date` DESC
)
)
SELECT `id`, `price`, `date`
FROM `cte`
WHERE `row` = 1