outbound-link
7 | `; 8 | 9 | exports[`NavLink renders nav link with internal link 1`] = ` 10 | 11 | VuePress 12 | 13 | `; 14 | -------------------------------------------------------------------------------- /packages/pulse-core/lib/helpers/isWatchableObj.ts: -------------------------------------------------------------------------------- 1 | export function isWatchableObject(value) { 2 | function isHTMLElement(obj) { 3 | try { 4 | return obj instanceof HTMLElement; 5 | } catch (e) { 6 | return typeof obj === 'object' && obj.nodeType === 1 && typeof obj.style === 'object' && typeof obj.ownerDocument === 'object'; 7 | } 8 | } 9 | let type = typeof value; 10 | return value != null && type == 'object' && !isHTMLElement(value) && !Array.isArray(value); 11 | } 12 | -------------------------------------------------------------------------------- /packages/pulse-core/lib/tracker.ts: -------------------------------------------------------------------------------- 1 | import { Pulse } from './pulse'; 2 | import { IJob } from './internal'; 3 | 4 | export class Tracker { 5 | jobs: Set{{ getMsg() }}7 | 8 |
21 | Edit src/App.tsx and save to reload.
22 |
4 | {myStringSingle}
42 |{myStringDestructured}
43 |{myHookArray[0]}
44 |
5 | For a guide and recipes on how to configure / customize this project,
6 | check out the
7 | vue-cli documentation.
8 |