I think there are several options, I show in order of my preference.
## setup
require(ggplot2)
set.seed(10) # make reproducible
dat <- data.frame(x=1:10,y=runif(10))
My favorite option is to create a simple function wrapper to your code. Then whenever you need to change the data, just pass new data to your function, and it will give it to ggplot and create the new graph. This is flexible and fairly robust to problems. It is also extensible, in that if later you decide you would also like to be able to change the title, you can just add a title argument to your function too.
## my favorite option
myplot <- function(data) {
ggplot(data, aes(x, y)) + geom_point()
}
## use it
myplot(data = dat)

## change it
dat <- data.frame(x = 11:20, y = runif(10))
myplot(data = dat)

Another approach is to save your call to ggplot as an expression, which is unevaluated. Then you just evaluate it whenever you want. It is almost like typing the code each time (it is different in some ways but that is the best analogy I can think of).
## not wild about this one
myplotcall <- expression(ggplot(dat, aes(x,y)) + geom_point())
## look at it (literally just the input)
myplotcall
expression(ggplot(dat, aes(x, y)) + geom_point())
## use it
eval(myplotcall)

## change it
dat <- data.frame(x = 21:30, y = runif(10))
eval(myplotcall)

You can change the data in the ggplot object itself. I think that this approach would be the most prone to problems as you are mucking with internals of an object that was not really intended to be changed by the user (i.e., just because we can does not mean we should). This is more appropriately done with the %+% operator (see joran's answer)
## not wild about this either
g <- ggplot(dat, aes(x,y)) + geom_point()
g ## use it

## change it
dat <- data.frame(x = 31:40, y = runif(10))
g$data <- dat
g

ggplotcreates a "data" element. Turning on blaming, looks like that bit of code was written by hadley and has been there since 2007-11-06. Further that file was most recently edited today, and the data element was left, so I think it is safe to say it has been there, is there now, and probably will be there at least in the next revision. – Joshua Jul 12 '12 at 3:36