Upgrade from V2

Below is an exhaustive guide on the breaking changes in Alpine V3, but if you'd prefer something more lively, you can review all the changes as well as new features in V3 by watching the Alpine Day 2021 "Future of Alpine" keynote:

Upgrading from Alpine V2 to V3 should be fairly painless. In many cases, NOTHING has to be done to your codebase to use V3. Below is an exhaustive list of breaking changes and deprecations in descending order of how likely users are to be affected by them:

Note if you use Laravel Livewire and Alpine together, to use V3 of Alpine, you will need to upgrade to Livewire v2.5.1 or greater.

Breaking Changes

$el is now always the current element

$el now always represents the element that an expression was executed on, not the root element of the component. This will replace most usages of x-ref and in the cases where you still want to access the root of a component, you can do so using $root. For example:

<!-- 🚫 Before -->
<div x-data>
<button @click="console.log($el)"></button>
<!-- In V2, $el would have been the <div>, now it's the <button> -->
</div>
 
<!-- ✅ After -->
<div x-data>
<button @click="console.log($root)"></button>
</div>

For a smoother upgrade experience, you can replace all instances of $el with a custom magic called $root.

→ Read more about $el in V3
→ Read more about $root in V3

Automatically evaluate init() functions defined on data object

A common pattern in V2 was to manually call an init() (or similarly named method) on an x-data object.

In V3, Alpine will automatically call init() methods on data objects.

<!-- 🚫 Before -->
<div x-data="foo()" x-init="init()"></div>
 
<!-- ✅ After -->
<div x-data="foo()"></div>
 
<script>
function foo() {
return {
init() {
//
}
}
}
</script>

→ Read more about auto-evaluating init functions

Need to call Alpine.start() after import

If you were importing Alpine V2 from NPM, you will now need to manually call Alpine.start() for V3. This doesn't affect you if you use Alpine's build file or CDN from a <template> tag.

// 🚫 Before
import 'alpinejs'
 
// ✅ After
import Alpine from 'alpinejs'
 
window.Alpine = Alpine
 
Alpine.start()

→ Read more about initializing Alpine V3

x-show.transition is now x-transition

All of the conveniences provided by x-show.transition... helpers are still available, but now from a more unified API: x-transition:

<!-- 🚫 Before -->
<div x-show.transition="open"></div>
<!-- ✅ After -->
<div x-show="open" x-transition></div>
 
<!-- 🚫 Before -->
<div x-show.transition.duration.500ms="open"></div>
<!-- ✅ After -->
<div x-show="open" x-transition.duration.500ms></div>
 
<!-- 🚫 Before -->
<div x-show.transition.in.duration.500ms.out.duration.750ms="open"></div>
<!-- ✅ After -->
<div
x-show="open"
x-transition:enter.duration.500ms
x-transition:leave.duration.750ms
></div>

→ Read more about x-transition

x-if no longer supports x-transition

The ability to transition elements in and add before/after being removed from the DOM is no longer available in Alpine.

This was a feature very few people even knew existed let alone used.

Because the transition system is complex, it makes more sense from a maintenance perspective to only support transitioning elements with x-show.

<!-- 🚫 Before -->
<template x-if.transition="open">
<div>...</div>
</template>
 
<!-- ✅ After -->
<div x-show="open" x-transition>...</div>

→ Read more about x-if

x-data cascading scope

Scope defined in x-data is now available to all children unless overwritten by a nested x-data expression.

<!-- 🚫 Before -->
<div x-data="{ foo: 'bar' }">
<div x-data="{}">
<!-- foo is undefined -->
</div>
</div>
 
<!-- ✅ After -->
<div x-data="{ foo: 'bar' }">
<div x-data="{}">
<!-- foo is 'bar' -->
</div>
</div>

→ Read more about x-data scoping

x-init no longer accepts a callback return

Before V3, if x-init received a return value that is typeof "function", it would execute the callback after Alpine finished initializing all other directives in the tree. Now, you must manually call $nextTick() to achieve that behavior. x-init is no longer "return value aware".

<!-- 🚫 Before -->
<div x-data x-init="() => { ... }">...</div>
 
<!-- ✅ After -->
<div x-data x-init="$nextTick(() => { ... })">...</div>

→ Read more about $nextTick

Returning false from event handlers no longer implicitly "preventDefault"s

Alpine V2 observes a return value of false as a desire to run preventDefault on the event. This conforms to the standard behavior of native, inline listeners: <... oninput="someFunctionThatReturnsFalse()">. Alpine V3 no longer supports this API. Most people don't know it exists and therefore is surprising behavior.

<!-- 🚫 Before -->
<div x-data="{ blockInput() { return false } }">
<input type="text" @input="blockInput()">
</div>
 
<!-- ✅ After -->
<div x-data="{ blockInput(e) { e.preventDefault() }">
<input type="text" @input="blockInput($event)">
</div>

→ Read more about x-on

x-spread is now x-bind

One of Alpine's stories for re-using functionality is abstracting Alpine directives into objects and applying them to elements with x-spread. This behavior is still the same, except now x-bind (with no specified attribute) is the API instead of x-spread.

<!-- 🚫 Before -->
<div x-data="dropdown()">
<button x-spread="trigger">Toggle</button>
 
<div x-spread="dialogue">...</div>
</div>
 
<!-- ✅ After -->
<div x-data="dropdown()">
<button x-bind="trigger">Toggle</button>
 
<div x-bind="dialogue">...</div>
</div>
 
 
<script>
function dropdown() {
return {
open: false,
 
trigger: {
'x-on:click'() { this.open = ! this.open },
},
 
dialogue: {
'x-show'() { return this.open },
'x-bind:class'() { return 'foo bar' },
},
}
}
</script>

→ Read more about binding directives using x-bind

Use global lifecycle events instead of Alpine.deferLoadingAlpine()

<!-- 🚫 Before -->
<script>
window.deferLoadingAlpine = startAlpine => {
// Will be executed before initializing Alpine.
 
startAlpine()
 
// Will be executed after initializing Alpine.
}
</script>
 
<!-- ✅ After -->
<script>
document.addEventListener('alpine:init', () => {
// Will be executed before initializing Alpine.
})
 
document.addEventListener('alpine:initialized', () => {
// Will be executed after initializing Alpine.
})
</script>

→ Read more about Alpine lifecycle events

x-ref no longer supports binding

In Alpine V2 for below code

<div x-data="{options: [{value: 1}, {value: 2}, {value: 3}] }">
<div x-ref="0">0</div>
<template x-for="option in options">
<div :x-ref="option.value" x-text="option.value"></div>
</template>
 
<button @click="console.log($refs[0], $refs[1], $refs[2], $refs[3]);">Display $refs</button>
</div>

after clicking button all $refs were displayed. However, in Alpine V3 it's possible to access only $refs for elements created statically, so only first ref will be returned as expected.

IE11 no longer supported

Alpine will no longer officially support Internet Explorer 11. If you need support for IE11, we recommend still using Alpine V2.

Deprecated APIs

The following 2 APIs will still work in V3, but are considered deprecated and are likely to be removed at some point in the future.

Event listener modifier .away should be replaced with .outside

<!-- 🚫 Before -->
<div x-show="open" @click.away="open = false">
...
</div>
 
<!-- ✅ After -->
<div x-show="open" @click.outside="open = false">
...
</div>

Prefer Alpine.data() to global Alpine function data providers

<!-- 🚫 Before -->
<div x-data="dropdown()">
...
</div>
 
<script>
function dropdown() {
return {
...
}
}
</script>
 
<!-- ✅ After -->
<div x-data="dropdown">
...
</div>
 
<script>
document.addEventListener('alpine:init', () => {
Alpine.data('dropdown', () => ({
...
}))
})
</script>

Note that you need to define Alpine.data() extensions BEFORE you call Alpine.start(). For more information, refer to the Lifecycle Concerns and Installation as a Module documentation pages.

Code highlighting provided by Torchlight