No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. fivemikes
    F
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 4
    • Best 0
    • Groups 0

    fivemikes

    @fivemikes

    0
    Reputation
    3
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    fivemikes Follow

    Latest posts made by fivemikes

    • RE: How to use Date Utils - getDayOfWeek

      I’m still fairly new to Javascript and after more research I’ve learned the the month is zero based in Javascript so my above date is actually referring to the Month of February which would make the return result of 5 make sense.

      posted in Help
      F
      fivemikes
    • How to use Date Utils - getDayOfWeek

      Hello

      I’m trying to use the getDayOfWeek function. The following code returns a 5 for the first day of 2019. According to the calendar the first day of 2019 is a Tuesday. How do you equate 5 to Tuesday? I would expect it to return either a 3 or a 2 depending on whether a week starts with Sunday or Monday respectively.

      import { date } from "quasar";
      console.log("index is: " + date.getDayOfWeek(new Date(2019, 1, 1)));
      

      thanks

      posted in Help
      F
      fivemikes
    • RE: When I create a default project $store is missing

      @s-molinari Thanks I will check that out.

      posted in Help
      F
      fivemikes
    • When I create a default project $store is missing

      Hello.

      When I create a default project using Quasar CLI selecting the defaults in addition to Vuex, Axios and Prettier $store is undefined when I go into the App.vue. $router is there but not $store. What am I missing?
      I’m running Quasar version 1.0.4. I ran Quasar update and it said everything was up to date. I’ve tried creating default projects using both Yarn and NPM and still get the same problem.

      Im fairly new to vue and Quasar but I have had Vue project with Vuex and Axios up and working using the vue cli with no problems.

      I appreciate any help you can provide.
      thanks

      posted in Help
      F
      fivemikes