Blame view

天文台pc/tianwentai-ui/node_modules/motion-dom/dist/es/render/Feature.mjs 374 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  /**
   * Feature base class for extending VisualElement functionality.
   * Features are plugins that can be mounted/unmounted to add behavior
   * like gestures, animations, or layout tracking.
   */
  class Feature {
      constructor(node) {
          this.isMounted = false;
          this.node = node;
      }
      update() { }
  }
  
  export { Feature };
  //# sourceMappingURL=Feature.mjs.map