12 lines
180 B
JavaScript
12 lines
180 B
JavaScript
import Vue from 'vue'
|
|
import Formulario from '@/Formulario.ts'
|
|
|
|
Vue.mixin({
|
|
methods: {
|
|
$t (text) {
|
|
return text
|
|
}
|
|
}
|
|
})
|
|
Vue.use(new Formulario())
|