Comments for Morphatic https://morphatic.com Connect...with a purpose. Mon, 28 Nov 2022 07:17:14 +0000 hourly 1 https://wordpress.org/?v=6.7.1 Comment on DIY LED Bubble Tube: Part 6–First Test! by Jeff https://morphatic.com/2016/04/27/diy-led-bubble-tube-part-6-first-test/#comment-13190 Mon, 28 Nov 2022 07:17:14 +0000 http://www.morphatic.com/?p=197#comment-13190 Hello,

Just wondering if you ever finished this. After seeing the giant ones at spirit halloween thus year I’ve been looking to possibly make one myself.

]]>
Comment on Configuring Storybook 6 for Vue 2 + Vuetify 2.3 by javascript - Storybook: how to update i18 locale depending on globals - Code Utility - Code Utility https://morphatic.com/2020/09/30/configuring-storybook-6-for-vue-2-vuetify-2-3/#comment-11728 Wed, 11 May 2022 01:30:23 +0000 https://morphatic.com/?p=577#comment-11728 […] found this related article, but ultimately didn’t gain much from it given that you already had the basic set up. They do […]

]]>
Comment on Vuetify3 (Alpha) + Storybook by Reut https://morphatic.com/2021/04/11/vuetify3-alpha-storybook/#comment-11664 Mon, 02 May 2022 08:12:50 +0000 https://morphatic.com/?p=602#comment-11664 Did you ever figure out how to run unit tests with vue 3.0 and vuetify?

]]>
Comment on Vuetify3 (Alpha) + Storybook by Doug Davies https://morphatic.com/2021/04/11/vuetify3-alpha-storybook/#comment-11509 Sun, 20 Mar 2022 21:16:04 +0000 https://morphatic.com/?p=602#comment-11509 I’m using the Vuetify v3 beta and having trouble with this configuration. I get the error

[Vue warn]: Failed to resolve component: v-app
If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.
at

and I have to declare the component like this

app.component(“v-app”, VApp)

in preview.js to get it to work.

]]>
Comment on Super-fast Secure WordPress Install on DigitalOcean with NGINX, PHP7, and Ubuntu 16.04 LTS by Cara Install WordPress, NGINX, PHP7.2, Percona, Brotli, dan Letsencrypt di Ubuntu 16.04 https://morphatic.com/2016/05/21/super-fast-secure-wordpress-install-on-digitalocean-with-nginx-php7-and-ubuntu-16-04-lts/#comment-11495 Wed, 09 Mar 2022 09:43:06 +0000 http://www.morphatic.com/?p=201#comment-11495 […] http://morphatic.com/2016/05/21/super-fast-secure-wordpress-install-on-digitalocean-with-nginx-php7… […]

]]>
Comment on Configuring Storybook 6 for Vue 2 + Vuetify 2.3 by Ben https://morphatic.com/2020/09/30/configuring-storybook-6-for-vue-2-vuetify-2-3/#comment-10463 Wed, 19 May 2021 15:20:56 +0000 https://morphatic.com/?p=577#comment-10463 this saved me. THANK YOU!

]]>
Comment on Configuring Storybook 6 for Vue 2 + Vuetify 2.3 by Morgan Benton https://morphatic.com/2020/09/30/configuring-storybook-6-for-vue-2-vuetify-2-3/#comment-10363 Mon, 26 Apr 2021 02:38:54 +0000 https://morphatic.com/?p=577#comment-10363 In reply to Chantelle.

Hi Chantelle! First off, my i18n config is inside `src/i18n.js` and it looks like:

import Vue from 'vue'
import VueI18n from 'vue-i18n'

Vue.use(VueI18n)

function loadLocaleMessages () {
const locales = require.context('./locales', true, /[A-Za-z0-9-_,\s]+\.json$/i)
const messages = {}
locales.keys().forEach(key => {
const matched = key.match(/([A-Za-z0-9-_]+)\./i)
if (matched && matched.length > 1) {
const locale = matched[1]
messages[locale] = locales(key)
}
})
return messages
}

export default new VueI18n({
locale: process.env.VUE_APP_I18N_LOCALE || 'en',
fallbackLocale: process.env.VUE_APP_I18N_FALLBACK_LOCALE || 'en',
messages: loadLocaleMessages(),
})

]]>
Comment on Configuring Storybook 6 for Vue 2 + Vuetify 2.3 by Chantelle https://morphatic.com/2020/09/30/configuring-storybook-6-for-vue-2-vuetify-2-3/#comment-10361 Sun, 25 Apr 2021 23:51:07 +0000 https://morphatic.com/?p=577#comment-10361 What does your i18n.ts file look like inside of src/plugins I am having the same issue

]]>
Comment on Configuring Storybook 6 for Vue 2 + Vuetify 2.3 by Vuetify3 (Alpha) + Storybook – Morphatic https://morphatic.com/2020/09/30/configuring-storybook-6-for-vue-2-vuetify-2-3/#comment-10301 Mon, 12 Apr 2021 03:36:00 +0000 https://morphatic.com/?p=577#comment-10301 […] used it in a “real” project, yet, I found this MUCH easier and cleaner to use than my previous example with Vue 2 + Vuetify 2. Please share a comment below if you found any ways to improve upon what I’ve […]

]]>
Comment on Configuring Storybook 6 for Vue 2 + Vuetify 2.3 by Morgan Benton https://morphatic.com/2020/09/30/configuring-storybook-6-for-vue-2-vuetify-2-3/#comment-10234 Sun, 21 Mar 2021 21:44:25 +0000 https://morphatic.com/?p=577#comment-10234 In reply to Stevie.

Stevie, did you ever figure this out? I see i18n info in the post and I can’t remember now if I added that originally or if I did it in response to your question.

]]>