Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
KoriIku committed Oct 11, 2024
2 parents 9e8e755 + 7ac0928 commit e4ab1d5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
9 changes: 7 additions & 2 deletions src/components/Results.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@
<script>
export default {
name: 'SearchPage',
props: ['query'],
mounted() {
this.loadGoogleCSE();
this.setupResultsRenderedCallback(); // 注册渲染结果回调函数
if (!this.query) {
this.goHome();
}
},
methods: {
loadGoogleCSE() {
Expand All @@ -44,7 +48,7 @@ export default {
// 定义一个渲染回调函数,用于移除不需要的属性
const myWebResultsRenderedCallback = () => {
const links = document.querySelectorAll('a.gs-title');
links.forEach((anchor) => {
// 移除 'data-cturl' 和 'data-ctorig' 属性
anchor.removeAttribute('data-cturl');
Expand Down Expand Up @@ -92,7 +96,8 @@ export default {
color: #58636f;
margin-right: 20px;
white-space: nowrap;
user-select: none; /* 防止标题文字被选中 */
user-select: none;
/* 防止标题文字被选中 */
}
/* 针对小屏幕的样式 */
Expand Down
3 changes: 2 additions & 1 deletion src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ const router = createRouter({
{
path: '/search',
name: 'Results',
component: Results
component: Results,
props: route => ({ query: route.query.q })
}
]
})
Expand Down

0 comments on commit e4ab1d5

Please sign in to comment.