selector method

AppBuilder selector(
  1. String value
)

Sets the CSS selector for the mount point. Defaults to '#app'.

Implementation

AppBuilder selector(String value) {
  _selector = value;
  return this;
}