mirror of
https://github.com/KoriIku/luxirty-search
synced 2024-11-21 16:18:13 +00:00
Merge branch 'main' of https://github.com/KoriIku/luxirty-search
Some checks are pending
/ build (push) Waiting to run
Some checks are pending
/ build (push) Waiting to run
This commit is contained in:
commit
e4ab1d52ec
@ -21,9 +21,13 @@
|
||||
<script>
|
||||
export default {
|
||||
name: 'SearchPage',
|
||||
props: ['query'],
|
||||
mounted() {
|
||||
this.loadGoogleCSE();
|
||||
this.setupResultsRenderedCallback(); // 注册渲染结果回调函数
|
||||
if (!this.query) {
|
||||
this.goHome();
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
loadGoogleCSE() {
|
||||
@ -92,7 +96,8 @@ export default {
|
||||
color: #58636f;
|
||||
margin-right: 20px;
|
||||
white-space: nowrap;
|
||||
user-select: none; /* 防止标题文字被选中 */
|
||||
user-select: none;
|
||||
/* 防止标题文字被选中 */
|
||||
}
|
||||
|
||||
/* 针对小屏幕的样式 */
|
||||
|
@ -14,7 +14,8 @@ const router = createRouter({
|
||||
{
|
||||
path: '/search',
|
||||
name: 'Results',
|
||||
component: Results
|
||||
component: Results,
|
||||
props: route => ({ query: route.query.q })
|
||||
}
|
||||
]
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user