Merge pull request #23 from LZHD/fix

fix: fix import path error
This commit is contained in:
啝裳 2021-07-04 11:46:28 +08:00 committed by GitHub
commit f96a2e4d00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
import { App } from "vue";
import countTo from "./src/CountTo";
import countTo from "./src/countTo";
export const CountTo = Object.assign(countTo, {
install(app: App) {

View File

@ -1,5 +1,5 @@
import { App } from "vue"
import selector from "./src/Selector"
import selector from "./src/selector"
export const Selector = Object.assign(selector, {
install(app: App) {

View File

@ -14,7 +14,7 @@
<script lang='ts'>
import { ref } from "vue";
import Selector from "/@/components/Selector";
import Selector from "/@/components/selector";
export default {
components: { Selector },