mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-30 18:43:17 +00:00
14 lines
176 B
Vue
14 lines
176 B
Vue
|
<template>
|
||
|
<div class="uk-container-expand"></div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
searchSuggestions: Array
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style></style>
|