응답: Angular 2 노선 변경 맨 위로 스크롤 응답: Angular 2 노선 변경 맨 위로 스크롤

1137 단어

응답: 각도 2 경로 변경 시 위로 스크롤


2016년 9월 20일
398

주 구성 요소에 루트 변경 탐지기를 등록하고 루트 변경의 맨 위로 스크롤할 수 있습니다.
import { Component, OnInit } from '@angular/core';
import { Router, NavigationEnd } from '@angular/router';

@Component({
    selector: 'my-app',
    template: '<ng-content></ng-content>',
})
export class MyAppComponent implements OnInit {
    constructor(private router: Router) { }

    ngOnInit()

Open Full Answer

좋은 웹페이지 즐겨찾기