skip to Main Content

Ubuntu – error: Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'getReport') Deno+vite

I am using Ubuntu. I tray install deno-vue along this docs https://docs.deno.com/runtime/tutorials/how_to_with_npm/vue I am getting weird error. Task dev deno run -A --node-modules-dir npm:vite error: Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'getReport') at isMusl (file:///home/bbabinski-a/Documents/Udemy/quasar-vite/node_modules/.deno/[email protected]/node_modules/rollup/dist/native.js:5:30) at…

VIEW QUESTION

Laravel – Axios response returns HTML

I have a problem in getting some data in my database. It returns HTML data. {data: '<!DOCTYPE html>n<html lang="en">n <head>n …>n x3Cscript src="/js/app.js">x3C/script>n</html>n', status: 200, statusText: 'OK', headers: AxiosHeaders, config: {…},…} And I am only requesting an authenticated user's username.…

VIEW QUESTION

Javascript – how can I get data from a child component to a parent component if there are several input fields in the child component?

The parent component has data that I want to pass to the child component. For example, I created such a component with data. Parent component <template> <NameUser :data="userData"></NameUser> <div>first name: {{ userData.firstName }}</div> <div>last name: {{ userData.lastName }}</div> </template> <script…

VIEW QUESTION

Html – How to make css component responsive when adding content inside q-card

I am using vue and quasar and have this component: <template> <q-layout> <q-page-container style="background-color: #e0e5ea;"> <q-page class="column"> <menu-bar></menu-bar> <div class="q-ma-lg row col"> <q-card flat class="col" style="border-radius: 9px;"> <q-card-section> </q-card-section> </q-card> <q-card flat class="col q-ml-lg " style="border-radius: 9px"> <q-card-section> </q-card-section> </q-card>…

VIEW QUESTION
Back To Top
Search