Compare commits

..

No commits in common. "45717ca3001e4d7a2f90c0b814d5e65f7569b6f0" and "158e15c8408d09dedfdd84a6e0f084bd22da1abf" have entirely different histories.

4 changed files with 5 additions and 6 deletions

View File

@ -2,8 +2,7 @@
import { useStockQuote } from "@/store/stock-quote/index.js";
import { useI18n } from "vue-i18n";
import dayjs from "dayjs";
import { computed } from 'vue'
import {computed} from 'vue'
const { t, locale } = useI18n();
const { getStockQuate, stockQuote, formatted } = useStockQuote();
const date = computed(() => {

View File

@ -2,7 +2,7 @@
import { useStockQuote } from "@/store/stock-quote/index.js";
import { useI18n } from "vue-i18n";
import dayjs from "dayjs";
import { computed } from 'vue'
import {computed} from 'vue'
const { t, locale } = useI18n();
const { getStockQuate, stockQuote, formatted } = useStockQuote();

View File

@ -1,9 +1,9 @@
<script setup>
import { onMounted, computed } from "vue";
import { onMounted } from "vue";
import { useStockQuote } from "@/store/stock-quote/index.js";
import { useI18n } from "vue-i18n";
import dayjs from "dayjs";
import {computed} from 'vue'
const { t, locale } = useI18n();
const { getStockQuate, stockQuote, formatted } = useStockQuote();
const date = computed(() => {

View File

@ -4,7 +4,7 @@ import { onUnmounted, ref, watch, onMounted, computed } from "vue";
import { useStockQuote } from "@/store/stock-quote/index.js";
import { useI18n } from "vue-i18n";
import dayjs from "dayjs";
import {computed} from 'vue'
const { t, locale } = useI18n();
const { getStockQuate, stockQuote, formatted } = useStockQuote();
const date = computed(() => {