import RuFlag from 'circle-flags/flags/ru.svg'
<RuFlag />
<template v-slot:item.actions="{item, index}">
.form-content {
position: relative;
}
.slide-fade-leave-active {
position: absolute;
top: 0;
}
<b-tabs v-model="tabIndex"> ... </b-tabs>
<b-link @click="tabIndex = 1">Change tab</b-link>
components: false
и импортируйте их вручную в нужном компоненте/странице:<script>
import logotype from '@/components/navbar/logotype'
export default {
components: {
logotype
}
}
</script>
This is the beta channel - a major refactor that brings initial Vue 3 support.
v-for="(todo, index) in todos" :key="index"