小编rey*_*mjr的帖子

如何将 Vuetify 3 添加到 Laravel 8 Jetsteam + 惯性

我正在尝试使用 JetStream + 惯性将vuetify 3安装到 Laravel 8。我成功安装了 Vuetify 插件,但我不确定如何将该插件包含到 app.js 中。

这是我的 app.js

require('./bootstrap');

import { createApp, h } from 'vue';
import { createInertiaApp } from '@inertiajs/inertia-vue3';
import { InertiaProgress } from '@inertiajs/progress';

import 'vuetify/styles';
import { createVuetify } from 'vuetify';

const appName = window.document.getElementsByTagName('title')[0]?.innerText || 'Laravel';
const vuetify = createVuetify();

createInertiaApp({
    title: (title) => `${title} - ${appName}`,
    resolve: (name) => require(`./Pages/${name}.vue`),
    setup({ el, app, props, plugin }) {
        return createApp({ render: () => h(app, props) })
            .use(plugin) …
Run Code Online (Sandbox Code Playgroud)

inertiajs vuetify.js laravel-8

1
推荐指数
2
解决办法
2730
查看次数

如何使用api集成创建magento支付模块

我在Moneris支付网关中搜索可以执行API的模块.我真的需要它,任何人都可以帮助我如何开始这个模块?或任何可以帮助如何做的教程.我已经完成了如何创建支付模块的magentocommerce步骤,但仍然不符合我的需求和要求.

payment-gateway magento

0
推荐指数
1
解决办法
9723
查看次数