218 comments found.
Can you check your VSnack page, I would be very happy if you can fix it https://vuero.cssninja.io/components/snack </>
Hi, it seems this is only broken on the browser and not in the code. It seems there are some issues with our cloudflare infrastructure that can lead to this. We’re investigating and looking for a fix. Have you tried running it locally?
This is a fantastic template. Do you have any news on the Nuxt 3 version you have mentioned over the past 12 months?
Hi, we have half of it done so far. We’ve done components and main layout. Now we need to start implementing the pages.
Thanks, that is great news. Available this year or next?
Given we’re working on a big launch of our new website and products anytime soon, that will probably be in the beginning of 2023. Best.
I can easy connect to REST Api Spring Application?
Hi, Vuero is a frontend client template. Therefore, you can connect to any REST api if you are familiar with Vue 3 and its composition api.
Is it some how possible i can pay you to port this to laravel ( inertia js ) ?
Hi, we’ve answered your support ticket. Please join our discord server if not already done. Best.
Just trying to find out how I can get access to the Github repo as a buyer?
Hi, simply open a ticket on https://support.cssninja.io asking for github access and providing your github username. Best.
hi, it would be nice if you guys implement fullcalendar in this template. i hope they will be in next update. thanks
Hi, is there a Vue 3 implementation of FullCalendar?
Yes i saw fullcalendar for vue 3 on npm website. https://www.npmjs.com/package/@fullcalendar/vue3
Alright, we’ll consider it for a future release. Thanks for the link. Best.
thanks, cssninjastudio. i will wait for it.
Do you have the source files for Sketch?
Hi, we do our designs directly on the screen, working on paper wireframes before that. Therefore no design files to share, sorry about that. Best.
is it possible to add labels to the icons in the sidebar? and/or to make the labels appear when hovering with the moouse?
question 2: is there documentation for the “code block” component? like the ones you use for documentation, that have a “code” button
quesiton 3: the “scroll spy” you use in the “content” list at the right of your pages, doesn’t work (it doesn’t automatically changes when you scroll), are you going to fix it? and is there a documentation on how to implement it?
Hi, here are some answers: 1. There are already 2 variations of the sidebar with labels and labels visible on hover. 2. There is no documentation for that component as it has been made for demo purpose. You can reuse the markdown documentation system on your end but this not something we specifically support, as it is there only to showcase the template components. 3. This wasn’t intended as a scrollspy initially, just a list of scrolling links. We don’t want to invest too much time on documentation development. Best.
Thank you very much for replying, you’re really good at support. Would you be so kind to tell me where can I find the sidebar with labels (and with them visible on hover?) I’m looking for something like the “navbar” (icons with lables below) but at the left side of the screen. Also, is there a changelog of the new version you published today?
(please ignore my former message, i ended up finding that by myself)
i purchased today and i’m wondering about the JSON Server, on what part of the demo does it save data? I thought the chat would let you send messages and save them in the DB, but the chat doesn’t work at all (the Enter key doesn’t send the message in v1, and in v2 you can’t even type anything)
also sorry for so many questions, but is there documentation on how to implement sidebars exactly? like what menu to show on what page and wether it should start hidden or visible? i’m learning by guessing and searching the code for “sidebar” and such, but i’d like to read a straight-forward explanation so i can spend my time actually building my app, thanks
Hi, the JSON data only serves to display conversation from the chat. It doesn’t envolve message or conversation creation, as this is just a UI template. The rest of the implementation has to been done depending on the customer project. Regarding sidebar implementation, We don’t have a specific documentation about that, however, there are plenty of comments inside the code to help you understand how it works, as it would simply be impossible to document everything. Vuero is a bit complex, but you’ll get to know it and fully understand it by taking the time, as everything done in there is done with logic. Also, if you need specific help, I encourage you to open a ticket on https://support.cssninja.io explaining your issues and how to reproduce them. Regards.
Hi, have question about a release date version 2.4. Since I dont have access to your gitHub. (I wish to get access to RoadMap and Changelog pages like in live preview) Thanks
Hi, please open a ticket on https://support.cssninja.io asking for Github private access and we’ll open it for you. You will be able to access the changelog and see the update details. Best.
Disclaimer: I’m commenting on this account but we recently re-purchased this under a different account so it’ll say it’s expired but I have the latest version.
Anyways, the template seems to have a number of small issues that require a bit of work to fix. Things like the vcheckbox component being broken when used in groups due to the true-value/false-value things not working. There’s a number of bugs that would likely be caught with better unit testing.
Hi, no worries, thanks for reaching out. In 2-3 days we are releasing a new update with a lot of bug fixes and at last, SSR support. You should open a ticket on https://support.cssninja.io and ask for access to the Vuero github private repo. You will be able to open issues and to clone from latest within the releases. We have a lot of work currently, but we will be looking at any issues you might point out. Best.
This probably uses vue-router. But i would like to use with Inertia and Laravel. Is it possible?
Hi, since we don’t work with those stacks, We can’t confirm for sure that you’ll be able to achieve what you want. No idea about inertia.js but we have quite a few customers using it to consume a Laravel API. Best.
Hello,
I’m trying to integrate the VIMaskInput component of yours (https://vuero.cssninja.io/elements/addons/imask-input) with any of the validated forms, inside a VControl, exactly a normal VInput would and it’s not working with the validation library. Could you help me please?
The validation part:
const validationSchema = toFormValidator(
zod.object({
nome: zod
.string()
.min(1, t('validations.string.min'))
.max(50, t('validations.string.max', { max: '50' })),
placa: zod.string().regex(/^[a-zA-Z]{3}[0-9][0-9a-zA-Z]{2}[0-9]/i, t('validations.string.car-plate')),
observação: zod.string().max(250, t('validations.string.max', { max: '250' })),
})
)
The component part:
<!-- PLACA -->
<div class="column is-12 is-4-desktop">
<VField id="placa" v-slot="{ field }">
<VLabel>{{ t('modules.vehicles.fields.plate') }}</VLabel>
<VControl>
<VIMaskInput v-model="data.data.placa"
:disabled="data.disabled"
:options="{ mask: 'aaa 0**0' }"
class="input"
/>
<p v-if="field?.errorMessage" class="help is-danger rem-85">{{ field.errorMessage }}</p>
</VControl>
</VField>
</div>
Hi, please repost this in a new ticket on https://support.cssninja.io so we can track your issue properly and propose the relevant fix. Best.
表格组件可以固定列吗,我并没有在组件中心找到表格固定列示例
或者告知使用哪个参数可以使表格列固定,实现列很多可以左右水平滑动,主要信息固定的效果。https://vuero.cssninja.io/components/flextable/slots。例如:固定列需要使用fixed属性,它接受 Boolean 值或者leftright,表示左边固定还是右边固定。并且我已经购买了,但是验证确认链接的电子邮件我并没有收到,或许可以通过bin_928@yeah.net协助我处理这个事件。
Hi, this is a flex table, meaning by that it is not an HTML table element. Therefore, Iam not sure about what you mean when you say you want a setting for fixed columns? Are you referring to the column width?
Hi, How can I get pure HTML file. I am unable to fid pure HTML file in zip.
The pure HTML file are inside the /dist folder. But those are compiled assets. You should use the theme following the documentation. Best.
Kindly please share pure HTML project. I need html page only. We have no idea about .vue files as well I am unable to work on that. So kindly please share only html version theme please.
Then you bought the wrong theme. You can ask a refund for this one and purchase Huro, which is HTML. Best.
Kindly please help the process for refund.
Open a refund request from your themeforest account selecting the product you want the refund for. Best.
Hello cssninjaStudio, Do you have a plan for an Angular version? We would appreciate alot
Hi, for now, it is pretty unlikely to happen. We will be working on react versions of our products. If we feel we have a sufficient angular knowledge, we might give it a shot in the future. Best.
Hello! When should we expect the react version?
Well, it is in the works. It might take a couple of additional months. It will be a Next.js version.
Hi cssninjaStudio, Is there any chance that your team develop this theme for ReactJS or NextJS in te future?
Hi, it is highly likely to happen, if we feel there is demand for it (and we think there probably is). Anyway, a Nuxt3-Tailwind version is already half on the way. Best.
It’s great, Thanks We are looking forward to the Reactjs or Nextjs version.
Hi, I have multiple corelated dropdown filters on one page. However when I select an option on the first filter, the page reloads and does not let me select an option in the second filter. Is there a way I can use multiple corelated filters on a single page and sort the list.
Hi, please open a ticket on https://support.cssninja.io, describing your issue and how to reproduce it. Please also provide a code example or a page link so we can understand what you are trying to achieve. Best.
How can I make the chat functional?
Hi, you will need to wire the chat UI to your favorite chat backend / API. Nothing more, Nothing less. Best.
Are there any Figma or Sketch files included
Hi, we skip the sketch / figma design phase for our Envato products to ship them faster. Therefore, there are no design files included. Best.
Hi, is there any support for RTL?
Hi, only very limited support. There’s still a lot of work to do. Best.