aurelia / vscode-extension

An extension for the VS Code editor that provides Intellisense capabilities to your Aurelia project.
MIT License
112 stars 25 forks source link

Changing Interface prop, should change view as well. #168

Open hiaux0 opened 2 years ago

hiaux0 commented 2 years ago

Ie.

// viewmodel
interface ISourceSetting {
  name: string
  link: string // change to search_url
}
<!-- view -->
- setting.link 
+ setting.search_url