A template for building Shopify apps using Vue.js as the frontend. It is based on the Shopify App Node template.
[!NOTE] Since
@shopify/cli: ^3.59
the@shopify/app
is bundled with the CLI. You can safely remove the@shopify/app
dependency from the rootpackage.json
file. this is reflected inshopify-app-vue-template > v1.2.3
you should no longer see npm warnings
Prefer to use GraphQL API for interacting with Shopify. See Migrating From REST to GraphQL
npx degit Mini-Sylar/shopify-app-vue-template your-app-name
npm install
in the root directorynpm run dev -- --reset
to start the configure your app (Initial setup only!)npm run dev
to start the app (Subsequent runs)Use Vue i18n
for app localization. To add a new language, create a new json file in the Locales Folder
folder and add the translations. See i18n.js for setup.
All translatiion files are lazily loaded, meaning only the translations for the current language are loaded.
Default language is what is returned by shopify reading the locale
query parameter. If not set, it fallbacks to en
.
Vue Router will embed the language in the URL, e.g localhost:3000/en
or localhost:3000/zh/about
The template has been localized, see Locales Folder folder. Translations may not be 100% accurate so pull requests are welcome.
AppBridge
Plugin for Vue to use Shopify App Bridge actions and componentsuseAuthenticatedFetch
to make authenticated requests to the Shopify API and your backend.App embedding
- Template is setup to embed your app in the Shopify admin.Uses SQLite as the db, same as the template see the supported databases.
To use one of these, you need to change your session storage configuration. To help, hereβs a list of SessionStorage adapter packages. Storage Drivers
Here are some useful links to get you started:
Built an app using this template? Submit it here App submission url