This release removes the auto-registration of the Inertia "plugin", this means you now have to register the plugin yourself within the setup method:
import Vue from 'vue'
import { createInertiaApp } from '@inertiajs/inertia-vue'
createInertiaApp({
resolve: name => require(`./Pages/${name}`),
+ setup({ el, App, props, plugin }) {
+ Vue.use(plugin)
new Vue({
render: h => h(App, props),
}).$mount(el)
},
})
Link
components now accept a 'queryStringArrayFormat' option (#994)setError
method to Form helper to manually set errors (#999)defaults
method to Form helper to 'redefine' the defaults (#1019)@inertiajs/inertia
's new 'Progress' type (#877)425663
)<inertia-link>
instead of <Link>
(#916)