added vue router

This commit is contained in:
Kostya
2023-11-12 21:53:54 +03:00
parent 30c2dae674
commit 7b7cbbfafe
345 changed files with 316132 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
module.exports = require('@vue/compiler-sfc')
+1
View File
@@ -0,0 +1 @@
export * from '@vue/compiler-sfc'
+1
View File
@@ -0,0 +1 @@
export * from '@vue/compiler-sfc'
+1
View File
@@ -0,0 +1 @@
export * from '@vue/compiler-sfc'
+3
View File
@@ -0,0 +1,3 @@
module.exports = require('@vue/compiler-sfc')
require('./register-ts.js')
+3
View File
@@ -0,0 +1,3 @@
export * from '@vue/compiler-sfc'
import './register-ts.js'
+4
View File
@@ -0,0 +1,4 @@
{
"main": "index.js",
"module": "index.mjs"
}
+5
View File
@@ -0,0 +1,5 @@
if (typeof require !== 'undefined') {
try {
require('@vue/compiler-sfc').registerTS(() => require('typescript'))
} catch (e) {}
}