mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-23 05:57:21 +00:00
Change import paths to relative paths.
This commit is contained in:
parent
b68b9e2c1e
commit
4c16beedaf
@ -20,7 +20,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import NavBar from "@/components/NavBar.vue";
|
||||
import NavBar from "./components/NavBar.vue";
|
||||
export default {
|
||||
components: {
|
||||
NavBar,
|
||||
|
@ -39,8 +39,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ErrorHandler from "@/components/ErrorHandler.vue";
|
||||
import VideoItem from "@/components/VideoItem.vue";
|
||||
import ErrorHandler from "./ErrorHandler.vue";
|
||||
import VideoItem from "./VideoItem.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
|
@ -23,8 +23,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import VideoItem from "@/components/VideoItem.vue";
|
||||
import Sorting from "@/components/Sorting.vue";
|
||||
import VideoItem from "./VideoItem.vue";
|
||||
import Sorting from "./Sorting.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
|
@ -21,8 +21,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import VideoItem from "@/components/VideoItem.vue";
|
||||
import Sorting from "@/components/Sorting.vue";
|
||||
import VideoItem from "./VideoItem.vue";
|
||||
import Sorting from "./Sorting.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
|
@ -71,7 +71,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import SearchSuggestions from "@/components/SearchSuggestions.vue";
|
||||
import SearchSuggestions from "./SearchSuggestions.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
|
@ -41,8 +41,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ErrorHandler from "@/components/ErrorHandler.vue";
|
||||
import VideoItem from "@/components/VideoItem.vue";
|
||||
import ErrorHandler from "./ErrorHandler.vue";
|
||||
import VideoItem from "./VideoItem.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
|
@ -58,7 +58,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import VideoItem from "@/components/VideoItem.vue";
|
||||
import VideoItem from "./VideoItem.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
|
@ -9,7 +9,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import VideoItem from "@/components/VideoItem.vue";
|
||||
import VideoItem from "./VideoItem.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
|
@ -150,11 +150,11 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import VideoPlayer from "@/components/VideoPlayer.vue";
|
||||
import VideoItem from "@/components/VideoItem.vue";
|
||||
import ErrorHandler from "@/components/ErrorHandler.vue";
|
||||
import CommentItem from "@/components/CommentItem.vue";
|
||||
import Chapters from "@/components/Chapters.vue";
|
||||
import VideoPlayer from "./VideoPlayer.vue";
|
||||
import VideoItem from "./VideoItem.vue";
|
||||
import ErrorHandler from "./ErrorHandler.vue";
|
||||
import CommentItem from "./CommentItem.vue";
|
||||
import Chapters from "./Chapters.vue";
|
||||
import PlaylistAddModal from "./PlaylistAddModal.vue";
|
||||
|
||||
export default {
|
||||
|
Loading…
Reference in New Issue
Block a user