mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
15 lines
350 B
JavaScript
15 lines
350 B
JavaScript
import { behavior } from './behavior';
|
|
import { observeProps } from './props';
|
|
|
|
export function observe(sfc, options) {
|
|
if (sfc.computed) {
|
|
options.behaviors.push(behavior);
|
|
options.methods = options.methods || {};
|
|
options.methods.$options = () => sfc;
|
|
|
|
if (options.properties) {
|
|
observeProps(options.properties);
|
|
}
|
|
}
|
|
}
|